Files
Umbraco-CMS/src/Umbraco.Core/Models/Identity/BackOfficeIdentityRole.cs
2015-04-01 13:41:43 +11:00

22 lines
462 B
C#

using Microsoft.AspNet.Identity;
namespace Umbraco.Core.Models.Identity
{
public class BackOfficeIdentityRole : IRole
{
public BackOfficeIdentityRole(string id)
{
Id = id;
}
/// <summary>
/// Id of the role
/// </summary>
public string Id { get; private set; }
/// <summary>
/// Name of the role
/// </summary>
public string Name { get; set; }
}
}