21 lines
421 B
C#
21 lines
421 B
C#
using gehGassi.Permissions;
|
|
|
|
namespace gehGassi.Web.Models
|
|
{
|
|
/// <summary>
|
|
/// Viewmodel für die Auswahl der Rechte
|
|
/// </summary>
|
|
public class PermissionVm
|
|
{
|
|
/// <summary>
|
|
/// Recht
|
|
/// </summary>
|
|
public Permission Permission { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gesetzt oder nicht
|
|
/// </summary>
|
|
public bool Granted { get; set; }
|
|
}
|
|
}
|