Files
2dust_v2rayN/v2rayN/ServiceLib/Models/ClashProxyModel.cs
T
2024-10-08 09:50:03 +08: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; }
}
}