update docs and prep for frontend
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
public record ApiResponse<T>(bool Success, T Data, string? Error);
|
||||
public record ApiResponse<T>(bool Success, int StatusCode, T? Data, ApiError? Error);
|
||||
public record ApiError(string Message, string Code);
|
||||
public record PagedResponse<T>(List<T> Items, int TotalCount, int Page, int PageSize);
|
||||
Reference in New Issue
Block a user