import {EntityInterface} from '../interface/entity-interface'; import {IInternalMeetingParticipant} from './internal-meeting-participant'; export interface IInternalMeeting extends EntityInterface { creation_user_id: number; owner_user_id: number; title: string; description: string; start_date: string; end_date: string; report: string; first_reminder_sent: boolean; second_reminder_sent: boolean; report_reminder_sent: boolean; creation_date: string; v_participants: IInternalMeetingParticipant[]; v_is_editable: boolean; }