Add separate EquipmentNo and DrawingNo fields alongside the combined DrawingNumber, plus a Title field for labeling exports. Updated across Core model, DbContext, API DTOs, and ExportDXF models. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
469 B
C#
18 lines
469 B
C#
namespace FabWorks.Api.DTOs
|
|
{
|
|
public class CreateExportRequest
|
|
{
|
|
public string DrawingNumber { get; set; }
|
|
public string Title { get; set; }
|
|
public string EquipmentNo { get; set; }
|
|
public string DrawingNo { get; set; }
|
|
public string SourceFilePath { get; set; }
|
|
public string OutputFolder { get; set; }
|
|
}
|
|
|
|
public class UpdatePdfHashRequest
|
|
{
|
|
public string PdfContentHash { get; set; }
|
|
}
|
|
}
|