Interface TrainingInterface

interface TrainingInterface {
    endDate: Date;
    id: number;
    name: string;
    startDate: Date;
    tasks: TaskInterface[];
}

Properties

endDate: Date
id: number
name: string
startDate: Date
tasks: TaskInterface[]