IosServerComponent.cs 211 B

123456789
  1. using System.Collections.Generic;
  2. namespace ET
  3. {
  4. public class IosServerComponent : Entity, IAwake, IDestroy
  5. {
  6. public Dictionary<string, string> Header = new Dictionary<string, string>();
  7. }
  8. }