mirror of
https://github.com/2dust/v2rayN.git
synced 2026-09-26 00:07:56 +03:00
18 lines
378 B
C#
18 lines
378 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; }
|
|
}
|