RouterAddressComponent.cs 264 B

123456789101112
  1. using System.Collections.Generic;
  2. using System.Net;
  3. namespace ET
  4. {
  5. public class RouterAddressComponent: Entity, IAwake<string>
  6. {
  7. public string RouterManagerAddress;
  8. public HttpGetRouterResponse Info;
  9. public int RouterIndex;
  10. }
  11. }