mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-19 16:06:36 +08:00
15 lines
341 B
C#
15 lines
341 B
C#
|
|
namespace Yi.Furion.Core.App.Dtos.Trends
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Trends输入创建对象
|
||
|
|
/// </summary>
|
||
|
|
public class TrendsCreateInput
|
||
|
|
{
|
||
|
|
public string Title { get; set; }
|
||
|
|
public string Content { get; set; }
|
||
|
|
public string? Remark { get; set; }
|
||
|
|
public List<long>? Images { get; set; }
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|