1
0
Fork 0
mirror of https://github.com/sbrl/Nibriboard.git synced 2018-01-10 21:33:49 +00:00
Nibriboard/Nibriboard/Client/Messages/HeartbeatMessage.cs

17 lines
328 B
C#

using System;
namespace Nibriboard.Client.Messages
{
/// <summary>
/// Represents a heartbeat message. The server sends this periodically to the client,
/// to which the client should respond with an identical message.
/// </summary>
public class HeartbeatMessage : Message
{
public HeartbeatMessage()
{
}
}
}