First commit.
This commit is contained in:
14
Source/OpenNest.Core/Quantity.cs
Normal file
14
Source/OpenNest.Core/Quantity.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace OpenNest
|
||||
{
|
||||
public struct Quantity
|
||||
{
|
||||
public int Nested { get; internal set; }
|
||||
|
||||
public int Required { get; set; }
|
||||
|
||||
public int Remaining
|
||||
{
|
||||
get { return Required - Nested; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user