export interface Task {
    /** The name of the task. */
    name: string;
    /** The description of the task. */
    description: string;
}
