Files
zpc-bulletin-board/ZpcBulletinBoard/Models/IdentityApplicationRole.cs
David Štaleker 4df426dc10 Drugi
2024-02-25 20:09:43 +01:00

19 lines
422 B
C#

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<int>
{
[Required]
public string Description { get; set; }
[Required]
public bool Active { get; set; }
}
}