mirror of
https://github.com/2dust/v2rayN.git
synced 2025-11-19 14:12:53 +00:00
17 lines
352 B
C#
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; }
|
|
}
|