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 appReplace { get; set; } public Dictionary cssReplace { get; set; } } }