mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-08-21 08:41:20 +08:00
12 lines
363 B
C#
12 lines
363 B
C#
|
|
namespace Plonds.Api.Configuration;
|
||
|
|
|
||
|
|
public sealed class PlondsApiOptions
|
||
|
|
{
|
||
|
|
public string StorageRoot { get; set; } = Plonds.Shared.PlondsConstants.DefaultStorageRoot;
|
||
|
|
|
||
|
|
public string MetaRoot { get; set; } = Plonds.Shared.PlondsConstants.DefaultMetaRoot;
|
||
|
|
|
||
|
|
public string ApiBasePath { get; set; } = Plonds.Shared.PlondsConstants.DefaultApiBasePath;
|
||
|
|
}
|
||
|
|
|