/BlogEngine/BlogEngine.NET/App_Code/Admin/Users/Role.cs
# · C# · 18 lines · 9 code · 2 blank · 7 comment · 0 complexity · a461cade30a35992b1d946170fb1a0c8 MD5 · raw file
- namespace Admin.Users
- {
- /// <summary>
- /// The user role.
- /// </summary>
- public class Role
- {
- #region Constants and Fields
-
- /// <summary>
- /// Gets or sets the name of the role.
- /// </summary>
- /// <value>The name of the role.</value>
- public string RoleName { get; set; }
-
- #endregion
- }
- }