namespace YD_Event.Application.Blog.Dtos;
public class TalksPageOutput
{
///
/// 主键
///
public long Id { get; set; }
///
/// 状态
///
public AvailabilityStatus Status { get; set; }
///
/// 内容
///
public string Content { get; set; }
///
/// 图片
///
public string Images { get; set; }
///
/// 是否允许评论
///
public bool IsAllowComments { get; set; }
///
/// 是否已点赞
///
public bool IsPraise { get; set; }
///
/// 是否置顶
///
public bool IsTop { get; set; }
///
/// 发布时间
///
public DateTime CreatedTime { get; set; }
}