28 lines
594 B
C#
28 lines
594 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AccountManagement.Application.Contracts.ProgramManager;
|
|
|
|
public record GetPmRolesDto
|
|
{
|
|
/// <summary>
|
|
/// آی دی نقش
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// نام نقش
|
|
/// </summary>
|
|
public string RoleName { get; set; }
|
|
|
|
/// <summary>
|
|
/// آی دی نقش در گزارشگیر
|
|
/// </summary>
|
|
public long? GozareshgirRoleId { get; set; }
|
|
|
|
/// <summary>
|
|
/// لیست کدهای دسترسی
|
|
/// </summary>
|
|
public List<int> Permissions { get; set; }
|
|
|
|
|
|
} |