17 lines
485 B
C#
17 lines
485 B
C#
namespace phronCare.API.Models.Account
|
|
{
|
|
public class RoleUpdate
|
|
{
|
|
public string Id { get; set; }=string.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
public string NormalizedName { get; set; } = string.Empty;
|
|
}
|
|
public class Role
|
|
{
|
|
public string? Id { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? NormalizedName { get; set; }
|
|
public string? ConcurrencyStamp { get; set; }
|
|
}
|
|
}
|