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