HttpClientComponent.cs 372 B

12345678910111213
  1. using System.Collections.Generic;
  2. using System.Net.Http;
  3. namespace ET
  4. {
  5. public class HttpClientComponent : Entity, IAwake, IDestroy
  6. {
  7. public static HttpClientComponent Instance;
  8. public HttpClient PostJsonClient;
  9. public HttpClient HttpClient;
  10. public Dictionary<string, string> header = new Dictionary<string, string>();
  11. }
  12. }