lampac-talks f843f04fd4 chore: initial commit 154.3
Signed-off-by: lampac-talks <lampac-talks@users.noreply.github.com>
2026-01-30 16:23:09 +03:00

27 lines
593 B
C#

namespace Shared.Models.AppConf
{
public class WebConf
{
public bool autoupdate { get; set; }
public string git { get; set; }
public string tree { get; set; }
public int intervalupdate { get; set; }
public string index { get; set; }
public string path { get; set; }
public bool basetag { get; set; }
public InitPlugins initPlugins { get; set; } = new InitPlugins();
public Dictionary<string, string> appReplace { get; set; }
public Dictionary<string, string> cssReplace { get; set; }
}
}