- using System;
- namespace SWRIS.Events
- {
- public class ClockResultReceivedEventArgs : EventArgs
- {
- public string IpAddress { get; }
- public int Timestamp { get; set; }
- public ClockResultReceivedEventArgs(string ipAddress, int timestamp)
- {
- IpAddress = ipAddress;
- Timestamp = timestamp;
- }
- }
- }
|