using Microsoft.AspNetCore.Identity; using System.ComponentModel.DataAnnotations.Schema; namespace LANCommander.Server.Data.Models { [Table("Roles")] public class Role : IdentityRole { public virtual ICollection Collections { get; set; } } }