diff options
Diffstat (limited to 'src/util/schemas/responses/GuildRecommendationsResponse.ts')
-rw-r--r-- | src/util/schemas/responses/GuildRecommendationsResponse.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/util/schemas/responses/GuildRecommendationsResponse.ts b/src/util/schemas/responses/GuildRecommendationsResponse.ts new file mode 100644 index 00000000..211670a6 --- /dev/null +++ b/src/util/schemas/responses/GuildRecommendationsResponse.ts @@ -0,0 +1,6 @@ +import { Guild } from "../../entities"; + +export interface GuildRecommendationsResponse { + recommended_guilds: Guild[]; + load_id: string; +} |