forked from Raphael/SCHALE.GameServer
12 lines
267 B
C#
12 lines
267 B
C#
|
namespace SCHALE.Common.NetworkProtocol
|
|||
|
{
|
|||
|
public class ErrorPacket : ResponsePacket
|
|||
|
{
|
|||
|
public override Protocol Protocol => Protocol.Error;
|
|||
|
|
|||
|
public string? Reason { get; set; }
|
|||
|
|
|||
|
public WebAPIErrorCode ErrorCode { get; set; }
|
|||
|
}
|
|||
|
}
|