mirror of
https://github.com/PacktPublishing/Learn-WinUI-3-Second-Edition.git
synced 2026-06-20 12:23:09 +00:00
Add chapter 9 sample code
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace HardwareSupplies
|
||||
{
|
||||
public class HardwareItem
|
||||
{
|
||||
public long id { get; set; }
|
||||
public string name { get; set; }
|
||||
public string category { get; set; }
|
||||
public int quantity { get; set; }
|
||||
public decimal cost { get; set; }
|
||||
public decimal price { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user