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