Data of a new contact to create

interface NewContact {
    email?: string;
    name: string;
    phoneNumber?: string;
}

Properties

email?: string
name: string
phoneNumber?: string