mirror of
https://github.com/PacktPublishing/Learn-WinUI-3-Second-Edition.git
synced 2026-06-20 12:23:09 +00:00
Add chapter 10 sample project
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
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}";
|
||||
}
|
||||
Reference in New Issue
Block a user