mirror of
https://github.com/2dust/v2rayN.git
synced 2025-07-01 12:32:10 +00:00
18 lines
No EOL
357 B
C#
18 lines
No EOL
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; }
|
|
}
|
|
} |