mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-19 08:04:40 +03:00
8090799ccc
Move many model classes into new sub-namespaces (ServiceLib.Models.CoreConfigs, ServiceLib.Models.Configs, ServiceLib.Models.Dto, ServiceLib.Models.Entities). Update GlobalUsings in ServiceLib, v2rayN.Desktop, v2rayN and add a tests GlobalUsings file to reference the new namespaces. Adjust static using directives in ClashApiManager and ClashProxiesViewModel to use ServiceLib.Models.Dto. This is a reorganization/rename of files and namespaces with no functional changes.
17 lines
459 B
C#
17 lines
459 B
C#
namespace ServiceLib.Models.Entities;
|
|
|
|
[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; }
|
|
}
|