Files
PepApi.Core/PepLib.Core/NestDrawing.cs
2025-10-27 18:48:23 -04:00

15 lines
239 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PepLib
{
public class NestDrawing
{
public string Name { get; set; }
public int QtyRequired { get; set; }
}
}