Files
BWPM/Models/AspNetRoles.cs

19 lines
349 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BWPMModels
{
public class AspNetRoles
{
public string Id { get; set; } = "";
public string Name { get; set; } = "";
public string NormalizedName { get; set; } = "";
public string ConcurrencyStamp { get; set; } = "";
}
}