ResetSystemDataReceivedEventArgs.cs 461 B

1234567891011121314151617
  1. using SWRIS.Models;
  2. using System;
  3. namespace SWRIS.Events
  4. {
  5. public class DetectionRawDataReceivedEventArgs : EventArgs
  6. {
  7. public string IpAddress { get; }
  8. public DetectionRawDataModel DetectionRawData { get; set; }
  9. public DetectionRawDataReceivedEventArgs(string ipAddress, DetectionRawDataModel detectionRawData)
  10. {
  11. IpAddress = ipAddress;
  12. DetectionRawData = detectionRawData;
  13. }
  14. }
  15. }