Created
April 24, 2025 12:37
-
-
Save rfulgencio3/abae873570a848ca7a3ce911304993d9 to your computer and use it in GitHub Desktop.
OutboxCoffee sample project using outbox pattern
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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