ClockResultReceivedEventArgs.cs 367 B

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