using System.Collections.Generic;
namespace zero.Core.Identity
{
public class PermissionCollection
{
///
/// Alias for querying
///
public string Alias { get; set; }
///
/// Name of the group
///
public string Label { get; set; }
///
/// Optional description text
///
public string Description { get; set; }
///
/// Individual permissions (stored as claims on the user identity)
///
public IList Items { get; set; } = new List();
}
}