You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Region.cs 467 B

1234567891011121314151617181920
  1. namespace Discord
  2. {
  3. public class Region
  4. {
  5. public string Id { get; }
  6. public string Name { get; }
  7. public string Hostname { get; }
  8. public int Port { get; }
  9. public bool Vip { get; }
  10. internal Region(string id, string name, string hostname, int port, bool vip)
  11. {
  12. Id = id;
  13. Name = name;
  14. Hostname = hostname;
  15. Port = port;
  16. Vip = vip;
  17. }
  18. }
  19. }