43 lines
		
	
	
		
			855 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			855 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| 
 | |
| namespace AIMS.PublicUI.Model
 | |
| {
 | |
|     public class UserPurview
 | |
|     {
 | |
|         public UserPurview()
 | |
|         { }
 | |
|         #region Model
 | |
|         private int _id;
 | |
|         private int _menuid;
 | |
|         private int _roleid;
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public int Id
 | |
|         {
 | |
|             set { _id = value; }
 | |
|             get { return _id; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public int MenuId
 | |
|         {
 | |
|             set { _menuid = value; }
 | |
|             get { return _menuid; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public int RoleId
 | |
|         {
 | |
|             set { _roleid = value; }
 | |
|             get { return _roleid; }
 | |
|         }
 | |
|         #endregion Model
 | |
|     }
 | |
| }
 |