DetectionRawDataResultReceivedEventArgs.cs 509 B

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