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

47 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
namespace PepApi.Core.Models
{
public class NestDetails
{
public NestDetails()
{
Parts = new List<Part>();
Plates = new List<Plate>();
}
public string Name { get; set; }
public DateTime DateCreated { get; set; }
public DateTime DateLastModified { get; set; }
public string Status { get; set; }
public string Comments { get; set; }
public string Customer { get; set; }
public string ProgrammedBy { get; set; }
public Material Material { get; set; }
public string Notes { get; set; }
public bool HasErrors { get; set; }
public string Revision { get; set; }
public string Application { get; set; }
public int NumberOfTestSquares { get; set; }
public bool AreTestSquaresOutOfSequence { get; set; }
public List<Part> Parts { get; set; }
public List<Plate> Plates { get; set; }
}
}