Files
icarus_dm/include/Models/Flags.h
T
2022-01-08 21:09:40 -05:00

18 lines
147 B
C++

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