Files
icarus_dm/src/Models/Flags.h
T

16 lines
144 B
C++

#ifndef FLAGS_H_
#define FLAGS_H_
#include<string>
namespace Models
{
struct Flags
{
std::string flag;
std::string value;
};
}
#endif