AutoMod/bot/src/struct/CommandCategory.ts
2022-01-22 20:21:57 +01:00

7 lines
133 B
TypeScript

class CommandCategory {
friendlyName: string;
description: string;
aliases: string[];
}
export default CommandCategory;