export interface UserPerson {
    id: string;
    userId?: string;
    personId: string;
    createdAt: Date;
    updatedAt: Date;
}
