namespace Oqtane.Models
{
///
/// Use this to define a which addresses a set of multiple permissions.
///
public class PermissionString
{
///
/// A term describing the entity
///
public string EntityName { get; set; }
///
/// A term describing a set of permissions
///
public string PermissionName { get; set; }
///
/// The permissions
///
public string Permissions { get; set; }
}
}