|
- using System;
- using System.Collections.Generic;
-
- namespace BPASmartClient.DosingSystem.Model.MQTT.Messages
- {
- public class MessageDefine
- {
- public static readonly Dictionary<int, Type> MSG = new Dictionary<int, Type>()
- {
- { MessageID.WorkOrderIssued,typeof(WorkOrderPublishOutput)},
- };
- }
- }
|