Interface OfficeContactPerson

interface OfficeContactPerson {
    email: string;
    name: string;
    phone?: string;
}

Properties

Properties

email: string
name: string
phone?: string