16 lines
250 B
C
16 lines
250 B
C
|
|
#ifndef LANCOMMANDER_MODELS_ENGINE_H
|
||
|
|
#define LANCOMMANDER_MODELS_ENGINE_H
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
namespace lancommander {
|
||
|
|
|
||
|
|
struct Engine {
|
||
|
|
std::string id;
|
||
|
|
std::string name;
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace lancommander
|
||
|
|
|
||
|
|
#endif // LANCOMMANDER_MODELS_ENGINE_H
|