mirror of
https://github.com/sbrl/Nibriboard.git
synced 2018-01-10 21:33:49 +00:00
15 lines
302 B
C#
15 lines
302 B
C#
using System;
|
|
|
|
namespace Nibriboard.Client.Messages
|
|
{
|
|
/// <summary>
|
|
/// Sent by the server to an idle client who's not responding to heartbeats just before the client disconnects them.
|
|
/// </summary>
|
|
public class IdleDisconnectMessage : Message
|
|
{
|
|
public IdleDisconnectMessage()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|