lampac/Shared/Models/AppConf/OnlineConf.cs
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

35 lines
715 B
C#

namespace Shared.Models.AppConf
{
public class OnlineConf
{
public string findkp { get; set; }
public bool checkOnlineSearch { get; set; }
public bool spider { get; set; }
public string spiderName { get; set; }
public string component { get; set; }
public string name { get; set; }
public string description { get; set; }
public bool version { get; set; }
public bool btn_priority_forced { get; set; }
public bool showquality { get; set; }
public string apn { get; set; }
public Dictionary<string, string> appReplace { get; set; }
public List<string> with_search { get; set; }
}
}