diff --git a/src/ReC.Application/OutResults/Commands/CreateOutResCommand.cs b/src/ReC.Application/OutResults/Commands/CreateOutResCommand.cs index a235156..fe33046 100644 --- a/src/ReC.Application/OutResults/Commands/CreateOutResCommand.cs +++ b/src/ReC.Application/OutResults/Commands/CreateOutResCommand.cs @@ -6,16 +6,11 @@ namespace ReC.Application.OutResults.Commands; public class CreateOutResCommand : IRequest { - public static readonly string EmptyJson = JsonSerializer.Serialize(new object(), options: new() - { - WriteIndented = false - }); + public required long ActionId { get; set; } - public long ActionId { get; set; } + public string? Header { get; set; } - public string Header { get; set; } = EmptyJson; - - public string Body { get; set; } = EmptyJson; + public string? Body { get; set; } public string? AddedWho { get; set; } }