mirror of
https://github.com/2dust/v2rayN.git
synced 2025-09-11 12:46:31 +00:00
20 lines
402 B
C#
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; }
|
|
}
|