Files
simrsx-fe/app/models/death-cause.ts
Andrian Roshandy 3f77d927b6 feat/encounter: done
2025-10-21 22:48:34 +07:00

6 lines
115 B
TypeScript

export interface DeathCause {
id: bigint;
encounter_id: bigint;
value: any; // json mapped to 'any' type
}