using System; using HcUtility.Core; using Newtonsoft.Json; namespace DSWeb.Areas.CommMng.Models { [JsonObject] public class CodeTemplateModel { #region private string _TEMPLATEID = ""; public string TEMPLATEID { get { return _TEMPLATEID; } set { _TEMPLATEID = value; } } private string _TEMPLATE = ""; public string TEMPLATE { get { return _TEMPLATE; } set { _TEMPLATE = value; } } #endregion } }