using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Api.Framework.SDK; using Api.Framework.Tools; namespace Api.Framework.Model { /// /// 云黑名单 /// public class fl_blackuser : base_model { /// /// 用户ID /// public string username { get; set; } /// /// 0微信 1QQ /// public ChatType usertype { get; set; } /// /// 昵称 /// public string nickname { get; set; } = string.Empty; /// /// 头像 /// public string avatar { get; set; } ///// ///// 拉黑类型 ///// //public BlackType BlackType { get; set; } /// /// 拉黑备注 /// public string remark { get; set; } = string.Empty; /// /// 是否已删除 /// public bool isdel { get; set; } /// /// 更新时间 /// public DateTime updatetime { get; set; } /// /// 是否云端 /// public bool iscloud { get; set; } } }