NonInventPurchasingSystem/CPRNIMS.Infrastructure/Models/Account/UserRoleModel.cs
2026-01-20 07:44:30 +08:00

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; }
}
}