using System.Collections.Generic;
namespace Kyoo.Authentication.Models
{
///
/// Permission options.
///
public class PermissionOption
{
///
/// The path to get this option from the root configuration.
///
public const string Path = "authentication:permissions";
///
/// The default permissions that will be given to a non-connected user.
///
public ICollection Default { get; set; }
///
/// Permissions applied to a new user.
///
public ICollection NewUser { get; set; }
}
}