19 lines
491 B
C#
19 lines
491 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Models.Account
|
|
{
|
|
public class UserRoleModel
|
|
{
|
|
public string? Id { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? NormalizedName { get; set; }
|
|
public string? ConcurrencyStamp { get; set; }
|
|
public string? UserId { get; set; }
|
|
public string? RoleId { get; set; }
|
|
}
|
|
}
|