Files
zaccaria.majid 59059676d5 gestione utenti
2023-03-13 16:32:16 +01:00

23 lines
704 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;
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace WebDoorCreator.Data.DbModels
{
[Table("AspNetRoles")]
public class AspNetRoles
{
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public string Id { get; set; } = "";
public string Name { get; set; } = "";
public string NormalizedName { get; set; } = "";
public string ConcurrencyStamp { get; set; } = "";
}
}