mirror of
https://github.com/2dust/v2rayN.git
synced 2025-05-15 20:58:07 +00:00
20 lines
No EOL
562 B
C#
20 lines
No EOL
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; }
|
|
}
|
|
} |