feat/consultation-82: wip

This commit is contained in:
2025-10-16 04:46:06 +07:00
parent c8ec0410e6
commit 72f2e86601
5 changed files with 36 additions and 24 deletions
+2
View File
@@ -1,6 +1,7 @@
export interface Consultation {
id: number
encounter_id: number
date?: string
unit_id: number
doctor_id?: number
problem: string
@@ -10,6 +11,7 @@ export interface Consultation {
export interface CreateDto {
encounter_id: number
date: string
problem: string
unit_id: number
}