Monorepo with centralized build props, npm workspaces, LlamaSharp AI, SQLite/SQLCipher storage, Svelte frontend, and unified smoke tests. Co-Authored-By: Oz <oz-agent@warp.dev>
14 lines
331 B
C#
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; }
|
|
}
|