mirror of
https://github.com/2dust/v2rayN.git
synced 2026-08-03 22:02:04 +03:00
21 lines
402 B
C#
21 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; }
|
|
}
|