mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-14 05:26:38 +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; }
|
|
|
|
}
|
|
}
|