feature: In-App Simulation Runner (Backend)
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
namespace VigilCare.Simulation;
|
||||
|
||||
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