mirror of
https://github.com/sbrl/Nibriboard.git
synced 2018-01-10 21:33:49 +00:00
16 lines
328 B
C#
16 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()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|