| 1234567891011121314151617 |
- using SWRIS.Models;
- using System;
- namespace SWRIS.Events
- {
- public class DetectionRawDataReceivedEventArgs : EventArgs
- {
- public string IpAddress { get; }
- public DetectionRawDataModel DetectionRawData { get; set; }
- public DetectionRawDataReceivedEventArgs(string ipAddress, DetectionRawDataModel detectionRawData)
- {
- IpAddress = ipAddress;
- DetectionRawData = detectionRawData;
- }
- }
- }
|