12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using OpenSEMI.ClientBase;
- namespace VirgoUI.Client.Models.Utility.AccountPage
- {
- public class RoleStatusItem
- {
- public string RoleID { get; set; }
- /// <summary>
- /// role name
- /// </summary>
- private string m_strRoleName;
- public string RoleName
- {
- get { return m_strRoleName; }
- set { m_strRoleName = value; }
- }
- /// <summary>
- /// role Status
- /// </summary>
- private bool m_bRoleStatus;
- public bool RoleStatus
- {
- get { return m_bRoleStatus; }
- set { m_bRoleStatus = value; }
- }
- public bool DisplayRoleStatus { get; set; }
- public RoleStatusItem Clone()
- {
- RoleStatusItem entity = new RoleStatusItem();
- entity.RoleID = this.RoleID;
- entity.RoleName = this.RoleName;
- entity.RoleStatus = this.RoleStatus;
- entity.DisplayRoleStatus = this.RoleStatus;
- return entity;
- }
- }
- }
|