21 lines
421 B
C#
21 lines
421 B
C#
namespace LiteCharms.Features.MidrandBooks.Orders.Models;
|
|
|
|
public class Order
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public DateTime? UpdatedAt { get; set; }
|
|
|
|
public long CustomerId { get; set; }
|
|
|
|
public OrderStatus Status { get; set; }
|
|
|
|
public decimal Total { get; set; }
|
|
|
|
public string? Notes { get; set; }
|
|
|
|
public string? InvoiceUrl { get; set; }
|
|
}
|