mirror of
https://github.com/PacktPublishing/Learn-WinUI-3-Second-Edition.git
synced 2026-06-20 12:23:09 +00:00
12 lines
325 B
C#
12 lines
325 B
C#
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; }
|
|
}
|
|
} |