Skip to content
This repository was archived by the owner on Nov 1, 2025. It is now read-only.

Commit cc8d778

Browse files
authored
Create OutlineServer.cs
1 parent fb6b08b commit cc8d778

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

Types/OutlineServer.cs

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
using System;
2+
3+
namespace OutlineManager.Types {
4+
public class OutlineServer {
5+
///<svalue>Name of Outline Server</value>
6+
public string Name;
7+
8+
///<value>ID of Outline Server</value>
9+
public string ServerId;
10+
11+
///<value><b>True</b>, if metrics enabled on this server</value>
12+
public bool MetricsEnabled;
13+
14+
///<value>Version of Outline Server</value>
15+
public string Version;
16+
17+
///<value>Port for new access keys</value>
18+
public int PortForNewAccessKeys;
19+
20+
///<value>IP/Hostname server for access keys</value>
21+
public string HostnameForAccessKeys;
22+
}
23+
}

0 commit comments

Comments
 (0)