mirror of
https://github.com/2dust/v2rayN.git
synced 2026-09-26 08:18:00 +03:00
18 lines
380 B
C#
18 lines
380 B
C#
namespace ServiceLib.Models.Dto;
|
|
|
|
[Serializable]
|
|
public partial class ClashProxyModel : ReactiveObject
|
|
{
|
|
public string? Name { get; set; }
|
|
|
|
public string? Type { get; set; }
|
|
|
|
public string? Now { get; set; }
|
|
|
|
[Reactive] public partial int Delay { get; set; }
|
|
|
|
[Reactive] public partial string? DelayName { get; set; }
|
|
|
|
public bool IsActive { get; set; }
|
|
}
|