12 lines
287 B
C#
12 lines
287 B
C#
using GamificationService.Models.Database;
|
|
|
|
namespace GamificationService.Models.DTO;
|
|
|
|
public class GetAllRightsResponse
|
|
{
|
|
public List<Right> Rights { get; set; }
|
|
public int TotalCount { get; set; }
|
|
public int PageNumber { get; set; }
|
|
public int PageSize { get; set; }
|
|
}
|