/**
 * Interface used in the following components/models:
 *  a) person.model.ts
 *  b) date.component.ts
*/
export interface SimpleDate {
    day: number;
    month: number;
    year: number;
}
