29 lines
587 B
C#
29 lines
587 B
C#
namespace LiteCharms.Models;
|
|
|
|
public class Order
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public DateTimeOffset CreatedAt { get; set; }
|
|
|
|
public DateTimeOffset? UpdatedAt { get; set; }
|
|
|
|
public Guid CustomerId { get; set; }
|
|
|
|
public Guid? QuoteId { get; set; }
|
|
|
|
public Guid ShoppingCartId { get; set; }
|
|
|
|
public Guid? RefundId { get; set; }
|
|
|
|
public OrderStatus Status { get; set; }
|
|
|
|
public string[]? Requirements { get; set; }
|
|
|
|
public string[]? Notes { get; set; }
|
|
|
|
public string[]? Terms { get; set; }
|
|
|
|
public bool DepositRequired { get; set; }
|
|
}
|