| 1234567891011121314151617 |
- using SWRIS.Models;
- using System;
- namespace SWRIS.Events
- {
- public class DetectionRawDataResultReceivedEventArgs : EventArgs
- {
- public string IpAddress { get; }
- public DetectionRawResultDataModel DetectionRawResultData { get; set; }
- public DetectionRawDataResultReceivedEventArgs(string ipAddress, DetectionRawResultDataModel detectionRawResultData)
- {
- IpAddress = ipAddress;
- DetectionRawResultData = detectionRawResultData;
- }
- }
- }
|