namespace Robust.Shared.ViewVariables;
public enum ViewVariablesResponseCode : ushort
{
///
/// Request went through successfully.
///
Ok = 200,
///
/// Request was invalid or something.
///
InvalidRequest = 400,
///
/// Come back with admin access.
///
NoAccess = 401,
///
/// Object pointing to by the selector does not exist.
///
NoObject = 404,
}