namespace axXez.TS3.Protocol
{
/// Server binary version information returned by version.
public class VersionInfo : TsEntity, IPlatformVersion
{
/// Server application version string (e.g. "3.13.7").
[TsField("version")]
public string Version { get; protected set; }
/// Unix timestamp of the server build.
[TsField("build")]
public string Build { get; protected set; }
/// Operating system platform the server is running on.
[TsField("platform")]
public string Platform { get; protected set; }
internal VersionInfo(TsDataEntry data) : base(data) { }
}
}