12 lines
359 B
C#
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; }
|
|
} |