﻿function CalendarMeetingBlock(startDate,endDate,calendarMeetings, thirdPartyUserName, userId)
{
    this.thirdPartyUserName = thirdPartyUserName;
    this.userId = userId;
    this.startTime = startDate;
    this.endTime = endDate;
    this.meetings = calendarMeetings;
}



