init
This commit is contained in:
11
C968Project/Part.cs
Normal file
11
C968Project/Part.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user