mirror of
https://github.com/tribufu/tribufu-js
synced 2026-06-01 09:42:36 +00:00
Create cluster.ts
This commit is contained in:
parent
7c22788be4
commit
7fa3386cba
1 changed files with 22 additions and 0 deletions
22
src/models/cluster.ts
Normal file
22
src/models/cluster.ts
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
// Copyright (c) Tribufu. All Rights Reserved.
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
import { MiniProfile } from "./profile";
|
||||||
|
|
||||||
|
export interface Cluster {
|
||||||
|
id: string,
|
||||||
|
name: string,
|
||||||
|
description: string | null,
|
||||||
|
packageId: string,
|
||||||
|
websiteUrl: string | null,
|
||||||
|
bannerUrl: string | null,
|
||||||
|
ownerId: string | null,
|
||||||
|
owner: MiniProfile | null,
|
||||||
|
discordServerId: string | null,
|
||||||
|
youtubeVideoUrl: string | null,
|
||||||
|
tags: string | null,
|
||||||
|
commentCount: number,
|
||||||
|
serverCount: number,
|
||||||
|
created: string,
|
||||||
|
updated: string | null
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue