mirror of
https://github.com/duplicati/duplicati.git
synced 2026-05-07 07:39:34 -04:00
9 lines
253 B
C#
9 lines
253 B
C#
namespace Duplicati.WebserverCore.Options;
|
|
|
|
public class StaticFilesOptions
|
|
{
|
|
public const string SectionName = "Duplicati:StaticFiles";
|
|
|
|
public string Webroot { get; set; } = "webroot";
|
|
public string? ContentRootPathOverride { get; set; }
|
|
} |