using SWRIS.Models; using System; namespace SWRIS.Events { public class DetectionDataReceivedEventArgs : EventArgs { public string IpAddress { get; } public DetectionDataModel DetectionData { get; } public DetectionDataReceivedEventArgs(string ipAddress, DetectionDataModel detectionData) { IpAddress = ipAddress; DetectionData = detectionData; } } }