15 lines
266 B
C#
15 lines
266 B
C#
using System;
|
|
|
|
namespace Plane.Copters
|
|
{
|
|
public class HeartbeatReceivedEventArgs : EventArgs
|
|
{
|
|
public HeartbeatReceivedEventArgs(ulong count)
|
|
{
|
|
Count = count;
|
|
}
|
|
|
|
public ulong Count { get; private set; }
|
|
}
|
|
}
|