diff options
Diffstat (limited to 'src/interfaces.ts')
-rw-r--r-- | src/interfaces.ts | 5 |
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 } |