prvi
This commit is contained in:
18
EveryThing/Models/IdentityApplicationRole.cs
Normal file
18
EveryThing/Models/IdentityApplicationRole.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user