SetAlarmPointInDmmRequest.cs 338 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ProGauge_StartItaliana_Probe.MessageEntity.Outgoing
  5. {
  6. public class SetAlarmPointInDmmRequest : RequestMessageBase
  7. {
  8. public SetAlarmPointInDmmRequest(string address) : base(address, RequestType.SetAlarmPointInDmm)
  9. {
  10. }
  11. }
  12. }