using System; using System.Collections.Generic; using Microsoft.AspNetCore.Identity; using System.ComponentModel.DataAnnotations.Schema; namespace ExamTemplate.Data.Models { [Table("Roles")] public class Role : IdentityRole { public List Users { get; set; } = new List(); } }