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.

36 lines
646 B
C#

using System;
using HcUtility.Core;
using Newtonsoft.Json;
namespace DSWeb.Areas.CommMng.Models
{
[JsonObject]
public class RemindModel
{
#region private Fields
private string _remindname = String.Empty;
private string _remindsql = String.Empty;
#endregion
#region Public Properties
public string RemindName
{
get { return _remindname; }
set { _remindname = value; }
}
public string RemindSql
{
get { return _remindsql; }
set { _remindsql = value; }
}
#endregion
}
}