using System.Collections.Generic; namespace IwbZero.Zero.Configuration { internal class RoleManagementConfig : IRoleManagementConfig { public List StaticRoles { get; } public RoleManagementConfig() { StaticRoles = new List(); } } }