10 lines
231 B
C#
10 lines
231 B
C#
namespace FabWorks.Api.DTOs
|
|
{
|
|
public class CreateExportRequest
|
|
{
|
|
public string DrawingNumber { get; set; }
|
|
public string SourceFilePath { get; set; }
|
|
public string OutputFolder { get; set; }
|
|
}
|
|
}
|