Files
v2rayN/v2rayN/ServiceLib/Models/Dto/ClashProxyModel.cs
T
2dust 8090799ccc Refactor models into sub-namespaces
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.
2026-05-11 11:00:19 +08:00

18 lines
356 B
C#

namespace ServiceLib.Models.Dto;
[Serializable]
public class ClashProxyModel : ReactiveObject
{
public string? Name { get; set; }
public string? Type { get; set; }
public string? Now { get; set; }
[Reactive] public int Delay { get; set; }
[Reactive] public string? DelayName { get; set; }
public bool IsActive { get; set; }
}