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
{
///
/// id
///
public long ID { get; set; }
///
/// 平台类型
///
public ChatType chattype { get; set; }
///
/// 用户账号
///
public string name { get; set; }
///
/// [昵称]
///
public string nick { get; set; }
///
/// 填写转发到的账号
///
private string _username;
public string username
{
get { return _username; }
set { _username = string.IsNullOrEmpty(value) ? string.Empty : value; }
}
public string messtype { get; set; }
}
}