47 lines
988 B
C#
47 lines
988 B
C#
using Api.Framework.SDK;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AutoAnswer.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 _username;
|
|
|
|
public string username
|
|
{
|
|
get { return _username; }
|
|
set { _username = string.IsNullOrEmpty(value) ? string.Empty : value; }
|
|
}
|
|
|
|
public string messtype { get; set; }
|
|
|
|
}
|
|
}
|