namespace YD_Event.Application.Blog.Dtos; public class AlbumsPageOutput { /// /// 相册ID /// public long Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 相册类型 /// public CoverType? Type { get; set; } /// /// 状态 /// public AvailabilityStatus Status { get; set; } /// /// 是否显示 /// public bool IsVisible { get; set; } /// /// 排序 /// public int Sort { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 封面 /// public string Cover { get; set; } /// /// 创建时间 /// public DateTime CreatedTime { get; set; } }