chat-social-message.model.ts 173 B

12345678
  1. import { SocketEvent } from './socket-events';
  2. export interface ChatSocialMessage extends SocketEvent {
  3. title: string;
  4. body: string;
  5. image: string;
  6. link: string;
  7. }