namespace ServiceLib.Models; [Serializable] public class FullConfigTemplateItem { [PrimaryKey] public string Id { get; set; } public string Remarks { get; set; } public bool Enabled { get; set; } = false; public ECoreType CoreType { get; set; } public string? Config { get; set; } public string? TunConfig { get; set; } public bool? AddProxyOnly { get; set; } = false; public string? ProxyDetour { get; set; } }