DetectionDataReceivedEventArgs.cs 431 B

12345678910111213141516
  1. using SWRIS.Models;
  2. using System;
  3. namespace SWRIS.Events
  4. {
  5. public class DetectionDataReceivedEventArgs : EventArgs
  6. {
  7. public string IpAddress { get; }
  8. public DetectionDataModel DetectionData { get; }
  9. public DetectionDataReceivedEventArgs(string ipAddress, DetectionDataModel detectionData)
  10. {
  11. IpAddress = ipAddress;
  12. DetectionData = detectionData;
  13. }
  14. }
  15. }