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