Files
aspnet-microservice-template/Models/DTO/GetAllRolesResponse.cs

12 lines
295 B
C#

using GamificationService.Models.Database;
namespace GamificationService.Models.DTO;
public class GetAllRolesResponse
{
public List<ApplicationRole> Roles { get; set; }
public int TotalCount { get; set; }
public int PageNumber { get; set; }
public int PageSize { get; set; }
}