update interfaces

This commit is contained in:
Chneemann 2024-03-26 09:25:21 +01:00
parent 48e6e7b2d1
commit f8240e1004
2 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,5 @@
export interface Task {
id?: string;
id: string;
title: string;
description: string;
category: string;

View file

@ -1,5 +1,9 @@
export interface User {
id?: string;
id: string;
firstName: string;
lastName: string;
email: string;
phone: string;
initials: string;
color: string;
}