Fix data type in pagination schema

Updated the `data` property in the pagination schema from a single object to an array of objects to accurately represent paginated data. This change ensures that the schema aligns with the actual data structure used in the application.
This commit is contained in:
2024-10-17 12:21:14 +02:00
parent 2f0c2f8b7c
commit 989ec71e2e

View File

@@ -192,5 +192,5 @@ export interface IWithCount<T> {
count: number;
limit: number;
currentOffset: number;
data: T
data: T[]
}