23 lines
491 B
C#
23 lines
491 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AccountManagement.Application.Contracts.ProgramManagerApiResult;
|
|
|
|
public class RoleResponse
|
|
{
|
|
public bool isSuccess { get; set; }
|
|
public RolesData data { get; set; }
|
|
}
|
|
|
|
public class RolesData
|
|
{
|
|
public List<RoleList> role { get; set; }
|
|
}
|
|
|
|
public class RoleList
|
|
{
|
|
public int id { get; set; }
|
|
public string roleName { get; set; }
|
|
public int gozareshgirRoleId { get; set; }
|
|
public List<int> permissions { get; set; }
|
|
}
|