Files
components/LiteCharms.Features.TechShop/Quotes/Models/Quote.cs
T
Khwezi Mngoma 70c6e0bfbc
continuous-integration/drone/pr Build is passing
Split Features to create space for more projects
2026-05-24 13:19:09 +02:00

25 lines
511 B
C#

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; }
}