Dental Care
This commit is contained in:
16
components/services/types.ts
Normal file
16
components/services/types.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
export interface Service {
|
||||
id: string;
|
||||
name: string;
|
||||
description?: string;
|
||||
duration: number;
|
||||
price: string;
|
||||
category: string;
|
||||
isActive: boolean;
|
||||
}
|
||||
|
||||
export interface Dentist {
|
||||
id: string;
|
||||
name: string;
|
||||
specialization: string | null;
|
||||
image: string | null;
|
||||
}
|
||||
Reference in New Issue
Block a user