Files
Archive/v2rayn/v2rayN/ServiceLib/Models/RoutingTemplate.cs
T
2024-10-23 20:36:38 +02:00

9 lines
198 B
C#

namespace ServiceLib.Models
{
[Serializable]
public class RoutingTemplate
{
public string Version { get; set; }
public RoutingItem[] RoutingItems { get; set; }
}
}