bbuddy-ui/src/types/chat.ts

12 lines
196 B
TypeScript

export interface IChatMessage {
GroupId: string;
CreatorId: number;
Content: string;
}
export interface IChatJoin {
GroupId: string;
CreatorId: number;
Content: string;
}