mirror of
https://github.com/riperiperi/FreeSO
synced 2026-08-13 20:26:13 -04:00
8 lines
191 B
C#
8 lines
191 B
C#
namespace FSO.Server.Common.Config
|
|
{
|
|
public class FilesystemConfig
|
|
{
|
|
public string BasePath { get; set; } = "./public";
|
|
public string BaseURL { get; set; }
|
|
}
|
|
}
|