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.
DS7/DSWeb/CommMng/Models/CrmKeyCodeModel.cs

38 lines
735 B
C#

using System;
using HcUtility.Core;
using Newtonsoft.Json;
namespace DSWeb.Areas.CommMng.Models
{
[JsonObject]
public class CrmKeyCodeModel
{
#region Public Properties
private string _GID = String.Empty;
public string GID
{
get { return _GID; }
set { _GID = value; }
}
private string _KEYTYPE = String.Empty;
public string KEYTYPE
{
get { return _KEYTYPE; }
set { _KEYTYPE = value; }
}
private string _KEYVALUE = String.Empty;
public string KEYVALUE
{
get { return _KEYVALUE; }
set { _KEYVALUE = value; }
}
#endregion
}
}