Files
subconverter/nodeinfo.h
2019-11-08 17:50:40 +08:00

19 lines
306 B
C++

#ifndef NODEINFO_H_INCLUDED
#define NODEINFO_H_INCLUDED
#include <string>
struct nodeInfo
{
int linkType = -1;
int id = -1;
int groupID = -1;
std::string group;
std::string remarks;
std::string server;
int port = 0;
std::string proxyStr;
};
#endif // NODEINFO_H_INCLUDED