mirror of
https://github.com/azaion/flights.git
synced 2026-04-22 22:16:31 +00:00
0625cd4157
Made-with: Cursor
10 lines
227 B
C#
10 lines
227 B
C#
namespace Azaion.Flights.DTOs;
|
|
|
|
public class PaginatedResponse<T>
|
|
{
|
|
public List<T> Items { get; set; } = [];
|
|
public int TotalCount { get; set; }
|
|
public int Page { get; set; }
|
|
public int PageSize { get; set; }
|
|
}
|