v2rayN/v2rayN/ServiceLib/Models/ClashProxyModel.cs
2025-10-19 11:42:32 +08:00

17 lines
352 B
C#

namespace ServiceLib.Models;
[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; }
}