DynuIPRefresher/inc/Credentials.h

22 lines
356 B
C
Raw Normal View History

//
// Created by lukas on 11.02.20.
//
#pragma once
#include <string>
class Credentials {
public:
static std::string dynuapikey;
static std::string domainid; //id of the dynu domain
static std::string domainname;
static std::string telegramApiKey;
static std::string chatId;
static bool checkCredentialValidity();
private:
};