mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-19 08:04:40 +03:00
18 lines
352 B
C#
18 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; }
|
|
}
|