export interface Baby {
    id: string;
    "name": string;
    "birthDate": string;
    "babyType": "PRIMARY";
    "gender": "MALE" | "FEMALE";
}
