using System.Collections.Generic; using Neo.Afx.Admin.Security; namespace Neo.LegitimateLicences.UserConsole.Models { public class RolesModel : BaseUserModel { public new List UserRoles { get; set; } } public class RoleAndUserCombined { public Role Role { get; set; } public bool IsSelected { get; set; } } }