matrix-dimension/web/app/shared/models/bot.ts
2017-05-27 17:45:07 -06:00

9 lines
159 B
TypeScript

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