Plane.Sdk3/PlaneGcsSdk.Contract_Shared/Copters/HeartbeatReceivedEventArgs.cs

15 lines
266 B
C#
Raw Normal View History

2017-02-27 02:02:19 +08:00
using System;
namespace Plane.Copters
{
public class HeartbeatReceivedEventArgs : EventArgs
{
public HeartbeatReceivedEventArgs(ulong count)
{
Count = count;
}
public ulong Count { get; private set; }
}
}