mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-18 23:54:49 +03:00
20 lines
562 B
C#
20 lines
562 B
C#
using SQLite;
|
|
|
|
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; }
|
|
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; }
|
|
}
|
|
} |