namespace DeepDrftAPI.Models { /// /// Non-secret upload tunables. is the directory used to stage the raw /// audio body during upload/replace-audio. It must live on the data disk, never the system temp /// mount (on the Linux host /tmp is a small RAM-backed tmpfs that cannot hold a multi-hundred-MB /// WAV). When null/empty it defaults to a "staging" subdirectory under the FileDatabase vault path. /// public class UploadSettings { public string? StagingPath { get; set; } } }