mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-27 04:34:26 +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;
|
||
|
|
}
|
||
|
|
|