12 lines
278 B
TypeScript
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;
|
|
}
|
|
} |