faturas_4docs/Webhook 4docs/ProcessedInvoices.cs
2024-04-17 17:19:35 -03:00

12 lines
359 B
C#

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