phronCare/phronCare.UIBlazor/Models/Sales/QuoteAuthorizationViewItem.cs

14 lines
367 B
C#
Raw Normal View History

2025-05-29 19:21:57 -03:00
using Domain.Dtos;
namespace phronCare.UIBlazor.Models.Sales
{
public class QuoteAuthorizationViewItem : QuoteAuthorizationDto
{
public string ProductDescription { get; set; } = string.Empty;
public int Quantity { get; set; }
public decimal UnitPrice { get; set; }
public decimal Subtotal => Quantity * UnitPrice;
}
}