mirror of
https://github.com/sbrl/Nibriboard.git
synced 2018-01-10 21:33:49 +00:00
15 lines
272 B
C#
15 lines
272 B
C#
using System;
|
|
|
|
namespace Nibriboard.Client.Messages
|
|
{
|
|
/// <summary>
|
|
/// A message that's sent by the server to a client to tell them that the server is shutting down.
|
|
/// </summary>
|
|
public class ShutdownMessage : Message
|
|
{
|
|
public ShutdownMessage()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|