pixelverse-helper/src/models/config-models.ts
2023-08-28 20:17:50 -04:00

7 lines
131 B
TypeScript

export interface BotSite {
name: string;
enabled: boolean;
url: string;
authorization: string;
body: string;
}