using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace 监听违规.Entitys
{
public class InviteInfo
{
public int id { get; set; }
///
/// 账号
///
public string Username { get; set; }
///
/// 昵称
///
public string Usernick { get; set; }
///
/// 头像
///
public string ImgUrl { get; set; }
///
/// 邀请者账号
///
public string InviterUserName { get; set; }
///
/// 邀请人昵称
///
public string InviterUsernick { get; set; }
///
/// 邀请者头像
///
public string InviterImgUrl { get; set; }
///
/// 自己邀请人数
///
public int InviterNum { get; set; }
///
/// 用户状态
///
public UserType UserType { get; set; }
///
/// 更新时间
///
public DateTime upd_tiem { get; set; } = DateTime.MinValue;
}
}