🏷️ Mongoose ShopRole Interface
This commit is contained in:
parent
d0f2cd3027
commit
e94b48a6d2
1 changed files with 9 additions and 0 deletions
9
src/interfaces/ShopRole.ts
Normal file
9
src/interfaces/ShopRole.ts
Normal file
|
@ -0,0 +1,9 @@
|
|||
import { Snowflake } from "discord.js";
|
||||
import { Document } from "mongoose";
|
||||
|
||||
export interface IShopRole extends Document {
|
||||
guildId: Snowflake;
|
||||
userId: Snowflake;
|
||||
roleId: Snowflake;
|
||||
lastPayed: Date;
|
||||
}
|
Loading…
Add table
Reference in a new issue