ErrorTextInfo.cs 192 B

1234567891011
  1. using Newtonsoft.Json.Linq;
  2. namespace ET
  3. {
  4. public class ErrorTextInfo : Entity, IAwake<string>, IDestroy
  5. {
  6. public string msgType = "text";
  7. public string text;
  8. }
  9. }