namespace Yi.Furion.Core.App.Dtos.Trends { /// /// Trends输入创建对象 /// public class TrendsCreateInput { public string Title { get; set; } public string Content { get; set; } public string? Remark { get; set; } public List? Images { get; set; } } }