1
0
Fork 0
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()
{
}
}
}