11 lines
305 B
C#
11 lines
305 B
C#
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";
|
|
}
|