9 lines
145 B
C#
9 lines
145 B
C#
namespace ConnectionsAPI.Models.Response;
|
|
|
|
public record PagedDataResponse<T>(
|
|
int Page,
|
|
int Count,
|
|
int MaxCount,
|
|
ICollection<T> Data
|
|
);
|