- using System;
- namespace SWRIS.Events
- {
- public class DetectionStatusResultReceivedEventArgs : EventArgs
- {
- public string IpAddress { get; }
- public byte Code { get; set; }
- public DetectionStatusResultReceivedEventArgs(string ipAddress, byte code)
- {
- IpAddress = ipAddress;
- Code = code;
- }
- }
- }
|