namespace Socialize.Api.Infrastructure.BlobStorage.Configuration; public sealed class LocalBlobStorageOptions { public const string SectionName = "LocalBlobStorage"; public string RootPath { get; set; } = "App_Data/blob-storage"; public string RequestPath { get; set; } = "/api/storage"; }