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

11 lines
274 B
C#

namespace Yi.Furion.Core.App.Dtos.Trends
{
public class TrendsUpdateInputVo
{
public string? Title { get; set; }
public string? Content { get; set; }
public string? Remark { get; set; }
public List<long>? Images { get; set; }
}
}