update interfaces
This commit is contained in:
parent
48e6e7b2d1
commit
f8240e1004
2 changed files with 6 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
|||
export interface Task {
|
||||
id?: string;
|
||||
id: string;
|
||||
title: string;
|
||||
description: string;
|
||||
category: string;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,9 @@
|
|||
export interface User {
|
||||
id?: string;
|
||||
id: string;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
email: string;
|
||||
phone: string;
|
||||
initials: string;
|
||||
color: string;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue