/// <summary>
 /// Initializes a new instance of the ReadAlarmUserNoteDto class.
 /// </summary>
 public ReadAlarmUserNoteDto(int alarmUserNoteId, UnitIdDto unit, AlarmSubtypeIdDto alarmSubtype, string message = default(string))
 {
     AlarmUserNoteId = alarmUserNoteId;
     Message         = message;
     Unit            = unit;
     AlarmSubtype    = alarmSubtype;
 }
 /// <summary>
 /// Initializes a new instance of the WriteAlarmUserNoteDto class.
 /// </summary>
 public WriteAlarmUserNoteDto(AlarmSubtypeIdDto alarmSubtype, UnitIdDto unit, string message = default(string))
 {
     AlarmSubtype = alarmSubtype;
     Unit         = unit;
     Message      = message;
 }