export interface ShiftInfo { CurrentShiftId: number; CurrentProductionDate: Date; CurrentProductionShift: number; CurrentShift: string; CurrentCrew: string; CurrentStart: Date; CurrentEnd: Date; PreviousShiftId: number; PreviousProductionDate: Date; PreviousProductionShift: number; PreviousShift: string; PreviousCrew: string; PreviousStart: Date; PreviousEnd: Date; NextShiftId: null | number; NextProductionDate: null | Date; NextProductionShift: null | number; NextShift: null | string; NextCrew: null | string; NextStart: null | Date; NextEnd: null | Date; LastShiftId: number; LastProductionDate: Date; LastProductionShift: number; LastShift: string; LastCrew: string; LastStart: Date; LastEnd: Date; }