12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Globalization;
- using System.Linq;
- using System.Text;
- namespace VeederRoot_ATG_Console.MessageEntity.Incoming
- {
- /// <summary>
- /// 9999, the FC here may send sth the console can't understood.
- /// </summary>
- public class AtgConsoleCannotUnderstoodPreviousMsgResponse : IncomingMessageBase
- {
- public override string ToLogString()
- {
- return "AtgConsoleCannotUnderstoodPreviousMsgResponse";
- }
- }
- }
|