mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-19 07:20:00 +00:00
14 lines
264 B
TypeScript
14 lines
264 B
TypeScript
import { Entity, Column, PrimaryColumn } from "typeorm";
|
|
|
|
@Entity("slowmode_channels")
|
|
export class SlowmodeChannel {
|
|
@Column()
|
|
@PrimaryColumn()
|
|
guild_id: string;
|
|
|
|
@Column()
|
|
@PrimaryColumn()
|
|
channel_id: string;
|
|
|
|
@Column() slowmode_seconds: number;
|
|
}
|