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