namespace axXez.TS3.Protocol { /// Exposes the application version string and OS platform of a TeamSpeak component. public interface IPlatformVersion { /// Application version string. string Version { get; } /// Operating system platform. string Platform { get; } } }