10 lines
203 B
C#
10 lines
203 B
C#
using System.Text.Json;
|
|
|
|
namespace StellaOps.Cli.Services.Models;
|
|
|
|
internal sealed record ExcititorOperationResult(
|
|
bool Success,
|
|
string Message,
|
|
string? Location,
|
|
JsonElement? Payload);
|