mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-25 10:25:01 +00:00
16 lines
315 B
TypeScript
16 lines
315 B
TypeScript
import { Column, Entity, PrimaryGeneratedColumn } from "typeorm";
|
|
|
|
@Entity("role_buttons")
|
|
export class RoleButtonsItem {
|
|
@PrimaryGeneratedColumn() id: number;
|
|
|
|
@Column() guild_id: string;
|
|
|
|
@Column() name: string;
|
|
|
|
@Column() channel_id: string;
|
|
|
|
@Column() message_id: string;
|
|
|
|
@Column() hash: string;
|
|
}
|