AtgConsoleCannotUnderstoodPreviousMsgResponse.cs 514 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Globalization;
  4. using System.Linq;
  5. using System.Text;
  6. namespace VeederRoot_ATG_Console.MessageEntity.Incoming
  7. {
  8. /// <summary>
  9. /// 9999, the FC here may send sth the console can't understood.
  10. /// </summary>
  11. public class AtgConsoleCannotUnderstoodPreviousMsgResponse : IncomingMessageBase
  12. {
  13. public override string ToLogString()
  14. {
  15. return "AtgConsoleCannotUnderstoodPreviousMsgResponse";
  16. }
  17. }
  18. }