using System; using System.Data; using System.Collections; using System.Collections.Generic; using HcUtility.Core; using Newtonsoft.Json; namespace DSWeb.Areas.MvcShipping.Models.MsCustomReport { [JsonObject] public class MsCustomReportModel : ModelObjectBase { public string GID { get; set; } public string isCustom { get; set; } public string RPTNAME { get; set; } public string RPTNOTE { get; set; } public string RPTCONTENT { get; set; } public string RPTPROP { get; set; } public string ISDEFAULT { get; set; } public string REPORT { get; set; } public string COMPANYID { get; set; } } }