All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 7m16s
14 lines
367 B
C#
14 lines
367 B
C#
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;
|
|
}
|
|
}
|