blob: 7f8f921cb9c8dd1e59c262489a44624aed84d60a [file]
import { HistoricalResponsibility } from './historical-responsibility';
export class HistoricalShiftChanges {
/** begin of the specified period */
startDate: string;
/** end of the specified period */
endDate: string;
/** Collection of historical shift change documentation data. */
historicalResponsibilities: HistoricalResponsibility[];
}