namespace YD_Event.Application.Client.Dtos; public class TalksOutput { /// /// /// public long Id { get; set; } /// /// 是否置顶 /// public bool IsTop { get; set; } /// /// 内容 /// public string Content { get; set; } /// /// 图片 /// public string Images { get; set; } /// /// 是否已点赞 /// public bool IsPraise { get; set; } /// /// 点赞数量 /// public int Upvote { get; set; } /// /// 评论数量 /// public int Comments { get; set; } /// /// 发布时间 /// public DateTime CreatedTime { get; set; } }