Files
abaddon/src/discord/ban.hpp
2022-01-09 23:20:08 -05:00

11 lines
206 B
C++

#pragma once
#include <string>
#include "user.hpp"
struct BanData {
std::string Reason; // null
UserData User; // access id
friend void from_json(const nlohmann::json &j, BanData &m);
};