export interface Person {
    firstName: string;
    lastName: string;
    birthYear: number;
    tc: string;
}
