feat: add FabWorks.Api with ExportsController and DTOs

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-18 06:32:41 -05:00
parent 28c9f715be
commit ab76fa61c9
9 changed files with 310 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace FabWorks.Api.DTOs
{
public class CreateExportRequest
{
public string DrawingNumber { get; set; }
public string SourceFilePath { get; set; }
public string OutputFolder { get; set; }
}
}