v2rayN/v2rayN/ServiceLib/Models/ClashProxyModel.cs
2dust 29a5abf4d6
Some checks are pending
release Linux / build (Release) (push) Waiting to run
release macOS / build (Release) (push) Waiting to run
release Windows desktop (Avalonia UI) / build (Release) (push) Waiting to run
release Windows / build (Release) (push) Waiting to run
Optimization and improvement
2025-09-10 19:43:11 +08:00

20 lines
402 B
C#

using ReactiveUI;
using ReactiveUI.Fody.Helpers;
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; }
}