Skip to content

Instantly share code, notes, and snippets.

@rfulgencio3
Created April 24, 2025 12:37
Show Gist options
  • Save rfulgencio3/abae873570a848ca7a3ce911304993d9 to your computer and use it in GitHub Desktop.
Save rfulgencio3/abae873570a848ca7a3ce911304993d9 to your computer and use it in GitHub Desktop.
OutboxCoffee sample project using outbox pattern
public class OutboxMessage
{
public Guid Id { get; set; } = Guid.NewGuid();
public string Type { get; set; } = string.Empty;
public string Payload { get; set; } = string.Empty;
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
public DateTime? ProcessedAt { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment