95eff42dfe
Co-authored-by: Lala, Shahd <Shahd.Lala@sybit.de> Co-authored-by: shahdlala66 <shahd.lala66@gmail.com> Reviewed-on: #8
11 lines
158 B
TypeScript
11 lines
158 B
TypeScript
export interface Bot {
|
|
id: string;
|
|
name: string;
|
|
rating: number;
|
|
createdAt: string;
|
|
}
|
|
|
|
export interface BotWithToken extends Bot {
|
|
token: string;
|
|
}
|