feat: add Title, EquipmentNo, DrawingNo to ExportRecord

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>
This commit is contained in:
2026-02-18 20:36:30 -05:00
parent dba68ecc71
commit 8b6950ef28
6 changed files with 24 additions and 0 deletions

View File

@@ -7,6 +7,9 @@ namespace FabWorks.Core.Models
{
public int Id { get; set; }
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 DateTime ExportedAt { get; set; }