Files
v2rayN/v2rayN/ServiceLib/Models/ClashProxyModel.cs
2024-08-19 18:15:54 +08:00

18 lines
353 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; }
}
}