This commit is contained in:
2025-04-29 21:11:49 -05:00
commit a7c02cf29f
12 changed files with 348 additions and 0 deletions

11
C968Project/Part.cs Normal file
View File

@@ -0,0 +1,11 @@
namespace C968Project;
public abstract class Part
{
public int PartID { get; set; }
public string Name { get; set; }
public float Price { get; set; }
public int InStock { get; set; }
public int Min { get; set; }
public int Max { get; set; }
}