using System.Collections.Generic; using System.Globalization; namespace ET { public class ErrorReportComponent : Entity, IAwake, IDestroy, IAppClose { public static ErrorReportComponent Instance; public ErrorInfo ErrorInfo; public string Url; //外网端口探测上报的url public string DetectionReportUrl; public bool IsDelayReport; public Queue TextInfos = new Queue(); public long Timer; //延时发送错误信息 public long DelayTime; } }