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 header = new Dictionary(); } }