14 lines
284 B
C#
14 lines
284 B
C#
using Microsoft.AspNetCore.Identity;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model
|
|
{
|
|
public class ApplicationRole:IdentityRole
|
|
{
|
|
public string? Description { get; set; }
|
|
}
|
|
}
|