mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-18 23:54:49 +03:00
9 lines
170 B
C#
9 lines
170 B
C#
namespace ServiceLib.Models;
|
|
|
|
[Serializable]
|
|
public class RoutingTemplate
|
|
{
|
|
public string Version { get; set; }
|
|
public RoutingItem[] RoutingItems { get; set; }
|
|
}
|