mirror of
https://github.com/2dust/v2rayN.git
synced 2025-10-14 04:19:12 +00:00
8 lines
170 B
C#
8 lines
170 B
C#
namespace ServiceLib.Models;
|
|
|
|
[Serializable]
|
|
public class RoutingTemplate
|
|
{
|
|
public string Version { get; set; }
|
|
public RoutingItem[] RoutingItems { get; set; }
|
|
}
|