Files
OpenNest/Source/OpenNest.Core/Quantity.cs
2016-05-16 22:09:19 -04:00

15 lines
253 B
C#

namespace OpenNest
{
public struct Quantity
{
public int Nested { get; internal set; }
public int Required { get; set; }
public int Remaining
{
get { return Required - Nested; }
}
}
}