21 lines
467 B
C#
21 lines
467 B
C#
using System.Collections.Generic;
|
|
|
|
namespace gehGassi.Permissions
|
|
{
|
|
/// <summary>
|
|
/// Hilfsklasse für das Laden von Rollen-Rechte Definitionen
|
|
/// </summary>
|
|
public class RoleToPermissions
|
|
{
|
|
/// <summary>
|
|
/// Name der Rolle
|
|
/// </summary>
|
|
public string RoleName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Rechte
|
|
/// </summary>
|
|
public IEnumerable<Permission> Permissions { get; set; }
|
|
}
|
|
}
|