namespace IwbZero.Authorization.Permissions
{
public class IwbPermissionGrantInfo
{
///
/// Name of the permission.
///
public string Name { get; private set; }
///
/// Is this permission granted Prohibited?
///
public bool IsGranted { get; private set; }
///
/// Creates a new instance of .
///
///
///
public IwbPermissionGrantInfo(string name, bool isGranted)
{
Name = name;
IsGranted = isGranted;
}
}
}