ServerInfo.cs 256 B

1234567891011121314151617
  1. namespace ET
  2. {
  3. public enum ServerStatus
  4. {
  5. Normal = 0,
  6. Stop = 1,
  7. }
  8. public class ServerInfo : Entity, IAwake
  9. {
  10. public int Status;
  11. public string ServerName;
  12. public long OpenServerTime;
  13. }
  14. }