| 12345678910111213 |
- using System.Collections.Generic;
- using System.Net.Http;
- namespace ET
- {
- public class HttpClientComponent : Entity, IAwake, IDestroy
- {
- public static HttpClientComponent Instance;
- public HttpClient PostJsonClient;
- public HttpClient HttpClient;
- public Dictionary<string, string> header = new Dictionary<string, string>();
- }
- }
|