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

9 lines
159 B
TypeScript
Raw Normal View History

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