discord-reaction-award/src/entry.ts
2024-09-09 04:28:10 +09:00

12 lines
278 B
TypeScript

export class Entry {
server: string;
channel: string;
emoji: string;
count: number;
constructor(server: string, channel: string, emoji: string, count: number) {
this.server = server;
this.channel = channel;
this.emoji = emoji;
this.count = count;
}
}