import { RecipientVM } from './recipientVM'; export interface MessageVM { id?: number; message_type?: number; subject: string; body: string; parent_id: number; created_date?: Date; messageRecipients?: Array; eventDate?: Date; can_update?: boolean; can_delete?: boolean; }