v2rayN/v2rayN/ServiceLib/Models/DNSItem.cs

20 lines
562 B
C#
Raw Normal View History

using SQLite;
2024-08-19 10:15:54 +00:00
namespace ServiceLib.Models
{
[Serializable]
public class DNSItem
{
[PrimaryKey]
public string id { get; set; }
public string remarks { get; set; }
public bool enabled { get; set; } = true;
public ECoreType coreType { get; set; }
2023-12-01 09:03:49 +00:00
public bool useSystemHosts { get; set; }
public string? normalDNS { get; set; }
public string? tunDNS { get; set; }
public string? domainStrategy4Freedom { get; set; }
public string? domainDNSAddress { get; set; }
}
}