using Api.Framework.SDK; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Main.Entitys { public class ShowTmp { /// /// id /// public long ID { get; set; } /// /// 平台类型 /// public ChatType chattype { get; set; } /// /// 用户账号 /// public string name { get; set; } /// /// [昵称] /// public string nick { get; set; } /// /// 邀请码 /// private string _invitecode; public string invitecode { get { return _invitecode; } set { _invitecode = string.IsNullOrEmpty(value) ? string.Empty : value; } } } }