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 role { get; set; } } public class RoleList { public int id { get; set; } public string roleName { get; set; } public int gozareshgirRoleId { get; set; } public List permissions { get; set; } }