45 lines
929 B
C#
45 lines
929 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// id
|
|
/// </summary>
|
|
public long ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 平台类型
|
|
/// </summary>
|
|
public ChatType chattype { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户账号
|
|
/// </summary>
|
|
public string name { get; set; }
|
|
|
|
/// <summary>
|
|
/// [昵称]
|
|
/// </summary>
|
|
public string nick { get; set; }
|
|
|
|
/// <summary>
|
|
/// 邀请码
|
|
/// </summary>
|
|
private string _invitecode;
|
|
|
|
public string invitecode
|
|
{
|
|
get { return _invitecode; }
|
|
set { _invitecode = string.IsNullOrEmpty(value) ? string.Empty : value; }
|
|
}
|
|
|
|
}
|
|
}
|