mirror of
https://github.com/asdlokj1qpi233/subconverter.git
synced 2025-10-28 12:22:37 +00:00
19 lines
306 B
C++
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
|