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>
12 lines
369 B
C#
12 lines
369 B
C#
namespace FabWorks.Api.DTOs
|
|
{
|
|
public class FileUploadResponse
|
|
{
|
|
public string StoredFilePath { get; set; } // kept for client compat, contains logical filename
|
|
public string ContentHash { get; set; }
|
|
public string FileName { get; set; }
|
|
public bool WasUnchanged { get; set; }
|
|
public bool IsNewFile { get; set; }
|
|
}
|
|
}
|