feature: Outbox Relay and Kafka Pipeline

This commit is contained in:
voltsrage
2026-06-16 22:12:46 +08:00
parent de603df151
commit 84d259d10c
18 changed files with 1277 additions and 6 deletions
@@ -3,6 +3,7 @@ public class OutboxEvent
public Guid Id { get; set; }
public string Topic { get; set; } = null!;
public string Payload { get; set; } = null!; // JSON string
public string? PartitionKey { get; set; } // encounter_id for all clinical events
public DateTimeOffset CreatedAt { get; set; }
public DateTimeOffset? ProcessedAt { get; set; }
}