using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CCDCount.MODEL.SqlDataModel { public class UserMesDataModelClass { public int Id { get; set;} public string UserName { get; set;} public string PassWord { get; set;} public string UserMes { get; set;} public DateTime DateTime { get; set;} public bool IsDelete { get; set;} public bool IsAdmin { get; set;} } }