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