using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Identity; namespace ZpcBulletinBoard.Models { public class IdentityApplicationRole : IdentityRole { [Required] public string Description { get; set; } [Required] public bool Active { get; set; } } }