blob: 7ab3d33e033ec37c01438c91c7897ffacaedf7db (
plain)
1
2
3
4
5
6
7
8
9
10
|
#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);
};
|