namespace SimApi.Configurations; public class SimApiStorageOptions { /// /// S3 服务器入口地址 /// public string? Endpoint { get; set; } /// /// S3 服务器文件访问地址 /// public string? ServeUrl { get; set; } /// /// S3服务 Bucket /// public string? Bucket { get; set; } public string? AccessKey { get; set; } public string? SecretKey { get; set; } }