using System.Collections.Generic; namespace NexusForever.Database.Auth.Model { public class RoleModel { public uint Id { get; set; } public string Name { get; set; } public uint Flags { get; set; } public ICollection RolePermission { get; set; } = new HashSet(); public ICollection AccountRole { get; set; } = new HashSet(); } }