using System; namespace Plane.Copters { public class HeartbeatReceivedEventArgs : EventArgs { public HeartbeatReceivedEventArgs(ulong count) { Count = count; } public ulong Count { get; private set; } } }