app/BTCPayApp.Core/Data/Outbox.cs
2024-07-29 13:39:12 +02:00

10 lines
292 B
C#

namespace BTCPayApp.Core.Data;
public class Outbox
{
public DateTimeOffset Timestamp { get; set; } = DateTimeOffset.Now;
public OutboxAction ActionType { get; set; }
public string Key { get; set; }
public string Entity { get; set; }
public long Version { get; set; }
}