Merge branch 'master' into support_new_upload_endpoint

This commit is contained in:
Kun Deng
2022-01-08 23:46:43 -05:00
committed by GitHub
35 changed files with 1815 additions and 1706 deletions
+15 -6
View File
@@ -5,12 +5,21 @@
namespace Models
{
class Flags
{
public:
std::string flag;
std::string value;
};
class Flags
{
public:
std::string flag;
std::string value;
};
struct Flags
{
std::string flag;
std::string value;
};
}
#endif