Guild settings 1 (#19)

* start guild settings window, tweak style
This commit is contained in:
ouwou
2021-01-15 06:37:35 +00:00
committed by GitHub
parent f51ab48009
commit 462f801af2
27 changed files with 442 additions and 4 deletions

View File

@@ -345,3 +345,11 @@ struct TypingStartObject {
friend void from_json(const nlohmann::json &j, TypingStartObject &m);
};
// implement rest as needed
struct ModifyGuildObject {
std::optional<std::string> Name;
std::optional<std::string> IconData;
friend void to_json(nlohmann::json &j, const ModifyGuildObject &m);
};