mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-30 09:44:09 +00:00
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.
36 lines
746 B
C#
36 lines
746 B
C#
namespace ServiceLib.Models.Entities;
|
|
|
|
[Serializable]
|
|
public class SubItem
|
|
{
|
|
[PrimaryKey]
|
|
public string Id { get; set; }
|
|
|
|
public string Remarks { get; set; }
|
|
|
|
public string Url { get; set; }
|
|
|
|
public string MoreUrl { get; set; }
|
|
|
|
public bool Enabled { get; set; } = true;
|
|
|
|
public string UserAgent { get; set; } = string.Empty;
|
|
|
|
public int Sort { get; set; }
|
|
|
|
public string? Filter { get; set; }
|
|
|
|
public int AutoUpdateInterval { get; set; }
|
|
|
|
public long UpdateTime { get; set; }
|
|
|
|
public string? ConvertTarget { get; set; }
|
|
|
|
public string? PrevProfile { get; set; }
|
|
|
|
public string? NextProfile { get; set; }
|
|
|
|
public int? PreSocksPort { get; set; }
|
|
|
|
public string? Memo { get; set; }
|
|
}
|