AutoMod/bot/src/struct/CommandCategory.ts

8 lines
133 B
TypeScript
Raw Normal View History

2022-01-05 20:20:55 +01:00
class CommandCategory {
friendlyName: string;
description: string;
aliases: string[];
}
export default CommandCategory;