Files
everything2/EveryThing/Models/IdentityApplicationRole.cs
David Štaleker 03b92525d7 Prvi commit
2023-05-12 09:00:07 +02:00

19 lines
416 B
C#

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