14 lines
331 B
C#

using System.Text.Json;
namespace Journal.Core.Models;
public class Command
{
public string Action { get; set; } = "";
public string? CorrelationId { get; set; }
public string? Id { get; set; }
public string? Type { get; set; }
public string? Tag { get; set; }
public JsonElement? Payload { get; set; }
}