9 lines
207 B
C#
9 lines
207 B
C#
|
|
namespace TrueCV.Infrastructure.Configuration;
|
||
|
|
|
||
|
|
public sealed class LocalStorageSettings
|
||
|
|
{
|
||
|
|
public const string SectionName = "LocalStorage";
|
||
|
|
|
||
|
|
public string StoragePath { get; set; } = "./uploads";
|
||
|
|
}
|