namespace Easy.Admin.Application.Client.Dtos; public class OAuthAccountDetailOutput { /// /// 用户ID /// public long Id { get; set; } /// /// 昵称 /// public string NickName { get; set; } /// /// 头像 /// public string Avatar { get; set; } /// /// 状态 /// public AvailabilityStatus Status { get; set; } /// /// 网站链接 /// public string Link { get; set; } /// /// logo /// public string Logo { get; set; } /// /// 网站名称 /// public string SiteName { get; set; } /// /// 对方博客友链地址 /// public string Url { get; set; } /// /// 网站介绍 /// public string Remark { get; set; } }