using System.Collections.Generic; using Neo.Legitimate.Data.Models; using Pilotfish.Afx.Admin.Security; namespace Neo.Legitimate.Admin.Models { public class RoleSecurablesModel { public IEnumerable Roles { get; set; } public IEnumerable Securables { get; set; } } public class RoleDetails { public Role Role { get; set; } public IEnumerable RoleSecurables { get; set; } public IEnumerable UsersLinkedToRole { get; set; } } }