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/Areas/SoftMng/Model/NoticeUserRelation.cs

38 lines
907 B
C#

2 years ago
using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
namespace DSWeb.SoftMng.Model{
//NoticeUserRelation
public class NoticeUserRelation
{
/// <summary>
/// GID
/// </summary>
private string _gid;
public string GID
{
get{ return _gid; }
set{ _gid = value; }
}
/// <summary>
/// NoticeID
/// </summary>
private string _noticeid;
public string NoticeID
{
get{ return _noticeid; }
set{ _noticeid = value; }
}
/// <summary>
/// UserID
/// </summary>
private string _userid;
public string UserID
{
get{ return _userid; }
set{ _userid = value; }
}
}
}