2026-01-10 13:47:54 +08:00

28 lines
627 B
C#

using RIZO.Model.Content.Dto;
namespace RIZO.Model.social
{
/// <summary>
/// 粉丝表
/// </summary>
public class SocialFansDto
{
[JsonIgnore]
public long PId { get; set; }
public long Userid { get; set; }
public long ToUserid { get; set; }
[JsonIgnore]
public DateTime FollowTime { get; set; }
[JsonIgnore]
public string UserIP { get; set; }
public int Status { get; set; }
public ArticleUser User { get; set; }
}
public class FansQueryDto : PagerInfo
{
public int SelectType { get; set; }
}
}