tgstation-server
The /tg/station 13 server suite
ErrorMessage.cs
Go to the documentation of this file.
1 using System;
2 
4 {
8  public sealed class ErrorMessage
9  {
13  public string Message { get; set; }
14 
18  public Version SeverApiVersion { get; set; } = ApiHeaders.Version;
19  }
20 }
Represents the header that must be present for every server request
Definition: ApiHeaders.cs:17
string Message
A human readable description of the error
Definition: ErrorMessage.cs:13
Version SeverApiVersion
The version of the API the server is using
Definition: ErrorMessage.cs:18
static Version Version
Get the version of the Api the caller is using
Definition: ApiHeaders.cs:62
Represents an error message returned by the server
Definition: ErrorMessage.cs:8