SurveyVista/Model/ApplicationRole.cs
2024-05-04 20:19:22 +02:00

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; }
}
}