Added reference project
This commit is contained in:
20
ref/Entities/Region.cs
Normal file
20
ref/Entities/Region.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
namespace Discord
|
||||
{
|
||||
public class Region
|
||||
{
|
||||
public string Id { get; }
|
||||
public string Name { get; }
|
||||
public string Hostname { get; }
|
||||
public int Port { get; }
|
||||
public bool Vip { get; }
|
||||
|
||||
internal Region(string id, string name, string hostname, int port, bool vip)
|
||||
{
|
||||
Id = id;
|
||||
Name = name;
|
||||
Hostname = hostname;
|
||||
Port = port;
|
||||
Vip = vip;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user