14 lines
314 B
C#
14 lines
314 B
C#
namespace Contracts.Responses;
|
|
|
|
public record ApiResponse
|
|
{
|
|
public required string Command { get; init; }
|
|
|
|
public bool Success { get; init; }
|
|
|
|
public string ErrorMessage { get; init; } = "";
|
|
|
|
public override string ToString() =>
|
|
Success ? $"{Command}: OK" : $"{Command}: {ErrorMessage}";
|
|
}
|