add locals on MyCalendar app

This commit is contained in:
2022-07-02 15:13:02 +02:00
parent 2d71ba9078
commit e5aada5561
9 changed files with 159 additions and 3 deletions

View File

@@ -0,0 +1,22 @@
import {Address, Center, Civility, DateTime} from "../../../ChillMainBundle/Resources/public/types";
export interface Person {
id: number;
type: "person";
text: string;
textAge: string;
firstName: string;
lastName: string;
current_household_address: Address | null;
birthdate: DateTime | null;
deathdate: DateTime | null;
age: number;
phonenumber: string;
mobilenumber: string;
email: string;
gender: "woman" | "man" | "other";
centers: Center[];
civility: Civility | null;
current_household_id: number;
current_residential_addresses: Address[];
}