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 234 B

1234567891011
  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. }
  11. }