mirror of
https://github.com/celisej567/abaddon.git
synced 2026-09-06 20:15:19 +03:00
16 lines
304 B
C++
16 lines
304 B
C++
#pragma once
|
|
#include "json.hpp"
|
|
#include "guild.hpp"
|
|
#include <string>
|
|
|
|
class Invite {
|
|
public:
|
|
std::string Code; //
|
|
Guild Guild; // opt
|
|
Channel Channel; // opt
|
|
User Inviter; // opt
|
|
int Members = -1; // opt
|
|
|
|
friend void from_json(const nlohmann::json &j, Invite &m);
|
|
};
|