LANCommander/LANCommander.SDK.Cpp/include/lancommander/models/platform.h

16 lines
258 B
C
Raw Permalink Normal View History

#ifndef LANCOMMANDER_MODELS_PLATFORM_H
#define LANCOMMANDER_MODELS_PLATFORM_H
#include <string>
namespace lancommander {
struct Platform {
std::string id;
std::string name;
};
} // namespace lancommander
#endif // LANCOMMANDER_MODELS_PLATFORM_H