using Newtonsoft.Json; namespace DSWeb.Areas.CommMng.Models { [JsonObject] public class UserRefModel { public string GID { get; set; } public string UserCode { get; set; } public string UserName { get; set; } public string CodeAndName { get; set; } public string CORPID { get; set; } public string DEPTGID { get; set; } public string DEPTNAME { get; set; } } public class UserLinkRefModel { public string GID { get; set; } public string UserCode { get; set; } public string UserName { get; set; } public string CodeAndName { get; set; } public string Tel { get; set; } public string Fax { get; set; } public string Email { get; set; } public string DEPTNAME { get; set; } public string CORPID { get; set; } } }