mirror of
https://github.com/azaion/flights.git
synced 2026-04-23 03:36:31 +00:00
Initial commit
Made-with: Cursor
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user