matrix-dimension/web/app/shared/models/bot.ts

8 lines
132 B
TypeScript
Raw Normal View History

export class Bot {
mxid: string;
name: string;
avatar: string;
about: string; // nullable
isEnabled: boolean;
}