/BlogEngine/BlogEngine.NET/App_Code/Admin/Users/Role.cs

# · C# · 18 lines · 9 code · 2 blank · 7 comment · 0 complexity · a461cade30a35992b1d946170fb1a0c8 MD5 · raw file

  1. namespace Admin.Users
  2. {
  3. /// <summary>
  4. /// The user role.
  5. /// </summary>
  6. public class Role
  7. {
  8. #region Constants and Fields
  9. /// <summary>
  10. /// Gets or sets the name of the role.
  11. /// </summary>
  12. /// <value>The name of the role.</value>
  13. public string RoleName { get; set; }
  14. #endregion
  15. }
  16. }