mirror of
https://github.com/sbrl/Nibriboard.git
synced 2018-01-10 21:33:49 +00:00
15 lines
242 B
C#
15 lines
242 B
C#
using System;
|
|
namespace Nibriboard.Client.Messages
|
|
{
|
|
public class LineCompleteMessage : Message
|
|
{
|
|
/// <summary>
|
|
/// The id of the line to complete
|
|
/// </summary>
|
|
public string LineId;
|
|
|
|
public LineCompleteMessage()
|
|
{
|
|
}
|
|
}
|
|
}
|