Files
Discord.Net/ref/Entities/Region.cs
2016-02-24 19:36:18 -04:00

21 lines
467 B
C#

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;
}
}
}