namespace MyHomePage.Api.Infrastructure.Configuration; /// 文件上传配置节点(对应 appsettings.json 中的 Upload) public class UploadOptions { public const string SectionName = "Upload"; /// 上传文件保存目录(相对 ContentRoot 解析) public string Path { get; set; } = "Uploads"; /// 前端访问上传文件时使用的基础 URL 前缀 public string BaseUrl { get; set; } = "/uploads"; /// 单文件最大字节数(默认 10MB) public long MaxSizeBytes { get; set; } = 10 * 1024 * 1024; }