export interface DaysInMonth {
    id: number;
    monthName: string;
    middleOfMonth: Date;
    weeks: any[];
}
