Files
Archive/v2rayn/v2rayN/ServiceLib/Models/ClashProxyModel.cs
T
2024-10-23 20:36:38 +02:00

18 lines
357 B
C#

namespace ServiceLib.Models
{
[Serializable]
public class ClashProxyModel
{
public string? Name { get; set; }
public string? Type { get; set; }
public string? Now { get; set; }
public int Delay { get; set; }
public string? DelayName { get; set; }
public bool IsActive { get; set; }
}
}