using System.ComponentModel.DataAnnotations; using System.Text.Json; namespace Webhook_4docs { public class ProcessedInvoices { [Key] public int InvoiceId { get; set; } public DateTime DateTimeProcessed { get; set; } public string? Status { get; set; } public string? InvoicePath { get; set; } public JsonDocument? JsonBody { get; set; } } }