a099d68915
Initial Release; Includes Database and MVC refactoring
19 lines
606 B
C#
19 lines
606 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Disco.Services.Authorization.Roles.ClaimGroups.Configuration.System
|
|
{
|
|
[ClaimDetails("System", "Permissions related to System Configuration")]
|
|
public class SystemClaims : BaseRoleClaimGroup
|
|
{
|
|
[ClaimDetails("Show System Configuration", "Can show the system configuration")]
|
|
public bool Show { get; set; }
|
|
|
|
[ClaimDetails("Configure Proxy Settings", "Can configure the proxy settings")]
|
|
public bool ConfigureProxy { get; set; }
|
|
}
|
|
}
|