Контракт http

This commit is contained in:
2026-05-31 23:09:30 +03:00
parent e691f14e5d
commit 01b935e112
18 changed files with 204 additions and 10 deletions

View File

@@ -0,0 +1,10 @@
namespace Contracts.Responses;
public class ApiResponse
{
public required string Command { get; init; }
public bool Success { get; init; }
public string ErrorMessage { get; init; } = "";
}