IRoleManagementConfig.cs 187 B

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