Files
components/LiteCharms.Features/Shop/Orders/Models/Order.cs
T
2026-05-14 02:46:07 +02:00

23 lines
466 B
C#

namespace LiteCharms.Features.Shop.Orders.Models;
public class Order
{
public Guid Id { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
public Guid CustomerId { get; set; }
public OrderStatus Status { get; set; }
public string[]? Requirements { get; set; }
public string[]? Notes { get; set; }
public string[]? Terms { get; set; }
public string? InvoiceUrl { get; set; }
}