Files

11 lines
274 B
C#
Raw Permalink Normal View History

2023-10-07 17:51:05 +08:00
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; }
}
}