This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
namespace LiteCharms.Features.TechShop.Quotes.Models;
|
||||
|
||||
public class Quote
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
|
||||
public DateTime CreatedAt { get; set; }
|
||||
|
||||
public DateTime? UpdatedAt { get; set; }
|
||||
|
||||
public DateTime? ExpiredAt { get; set; }
|
||||
|
||||
public Guid CustomerId { get; set; }
|
||||
|
||||
public Guid? OrderId { get; set; }
|
||||
|
||||
public Guid? ShoppingCartId { get; set; }
|
||||
|
||||
public QuoteStatus Status { get; set; }
|
||||
|
||||
public string? InvoiceUrl { get; set; }
|
||||
|
||||
public string? Reason { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user