IRoleManagementConfig.cs 189 B

123456789
  1. using System.Collections.Generic;
  2. namespace IwbZero.Zero.Configuration
  3. {
  4. public interface IRoleManagementConfig
  5. {
  6. List<StaticRoleDefinition> StaticRoles { get; }
  7. }
  8. }