12345678910111213141516 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Edge.Core.Parser
- {
- /// <summary>
- /// All message parsed from either ComPort, or TCP, need inherited from this base message.
- /// </summary>
- public abstract class MessageBase
- {
- public abstract string ToLogString();
- }
- }
|