#pragma once #include #include #include #include #include namespace rublon::method { class OTP:public PasscodeBasedAuth{ public: OTP(std::string systemToken, std::string tid) : PasscodeBasedAuth(std::move(systemToken), std::move(tid), "OTP", "Mobile TOTP from Rublon Authenticator:") {} }; } // namespace rublon::method