Files
blazor-saas-crm/Data/Entities/SalesQuotationItem.cs
T
2026-07-21 14:14:44 +07:00

17 lines
585 B
C#

using Indotalent.Data.Abstracts;
using Indotalent.Data.Interfaces;
namespace Indotalent.Data.Entities;
public class SalesQuotationItem : BaseEntity, IMultiTenant
{
public string? TenantId { get; set; }
public string? SalesQuotationId { get; set; }
public SalesQuotation? SalesQuotation { get; set; }
public string? ProductId { get; set; }
public Product? Product { get; set; }
public string? Summary { get; set; }
public decimal? UnitPrice { get; set; } = 0;
public double? Quantity { get; set; } = 1;
public decimal? Total { get; set; } = 0;
}