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.
35 lines
650 B
C#
35 lines
650 B
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.Areas.CommMng.Models
|
|
{
|
|
[JsonObject]
|
|
public class CodeSERVICEModel
|
|
{
|
|
#region
|
|
private string _gid = "";
|
|
/// <summary>
|
|
/// GID
|
|
/// </summary>
|
|
public string GID
|
|
{
|
|
get { return _gid; }
|
|
set { _gid = value; }
|
|
}
|
|
|
|
private string _service = "";
|
|
/// <summary>
|
|
/// CODENAME
|
|
/// </summary>
|
|
public string SERVICE
|
|
{
|
|
get { return _service; }
|
|
set { _service = value; }
|
|
}
|
|
|
|
|
|
#endregion
|
|
}
|
|
}
|