Files
Yi.Admin/Yi.Furion.Net6/Yi.Furion.Core/App/Dtos/Trends/TrendsCreateInput.cs
2023-10-07 17:51:05 +08:00

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; }
}
}