21 lines
602 B
C#
21 lines
602 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebDoorCreator.Data.DbModels
|
|
{
|
|
[Table("AspNetRoles")]
|
|
public class RolesModel
|
|
{
|
|
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public string Id { get; set; } = "";
|
|
public string Name { get; set; } = "";
|
|
public string NormalizedName { get; set; } = "";
|
|
public string ConcurrencyStamp { get; set; } = "";
|
|
}
|
|
}
|