namespace Easy.Admin.Application.Blog.Dtos;
public class FriendLinkPageOutput
{
///
/// 友情链接主键
///
public long Id { get; set; }
///
/// 状态
///
public AvailabilityStatus Status { get; set; }
///
/// 站点名称
///
public string SiteName { get; set; }
///
/// 创建时间
///
public DateTime CreatedTime { get; set; }
///
/// 忽略站点检查
///
public bool IsIgnoreCheck { get; set; }
///
/// 友链
///
public string Link { get; set; }
///
/// Logo链接
///
public string Logo { get; set; }
///
/// 对方博客友情链接地址
///
public string Url { get; set; }
///
/// 排序
///
public int Sort { get; set; }
///
/// 描述
///
public string Remark { get; set; }
}