Files
Learn-WinUI-3-Second-Edition/Chapter10/TemplateStudioSampleApp.Core/Models/SampleOrderDetail.cs
T
2023-08-13 13:40:04 -04:00

53 lines
774 B
C#

namespace TemplateStudioSampleApp.Core.Models;
// Model for the SampleDataService. Replace with your own model.
public class SampleOrderDetail
{
public long ProductID
{
get; set;
}
public string ProductName
{
get; set;
}
public int Quantity
{
get; set;
}
public double Discount
{
get; set;
}
public string QuantityPerUnit
{
get; set;
}
public double UnitPrice
{
get; set;
}
public string CategoryName
{
get; set;
}
public string CategoryDescription
{
get; set;
}
public double Total
{
get; set;
}
public string ShortDescription => $"Product ID: {ProductID} - {ProductName}";
}