Add FileStorageService for DXF/PDF storage using content hashing, FileStorageOptions config, FilesController for uploads, and FileBrowserController for browsing stored files. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
222 B
C#
10 lines
222 B
C#
namespace FabWorks.Api.Configuration
|
|
{
|
|
public class FileStorageOptions
|
|
{
|
|
public const string SectionName = "FileStorage";
|
|
|
|
public string OutputFolder { get; set; } = @"C:\ExportDXF\Output";
|
|
}
|
|
}
|