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