You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
556 B
C#

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
}
}