aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces.ts')
-rw-r--r--src/interfaces.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/interfaces.ts b/src/interfaces.ts
index e85ef29..49eee91 100644
--- a/src/interfaces.ts
+++ b/src/interfaces.ts
@@ -35,8 +35,9 @@ export interface NewItem {
}
export interface Person {
+ ID?: number
Name: string
Address: string
- Phone: string
- Email: string
+ Phone?: string
+ Email?: string
}