DetectionStatusResultReceivedEventArgs.cs 369 B

12345678910111213141516
  1. using System;
  2. namespace SWRIS.Events
  3. {
  4. public class DetectionStatusResultReceivedEventArgs : EventArgs
  5. {
  6. public string IpAddress { get; }
  7. public byte Code { get; set; }
  8. public DetectionStatusResultReceivedEventArgs(string ipAddress, byte code)
  9. {
  10. IpAddress = ipAddress;
  11. Code = code;
  12. }
  13. }
  14. }