summaryrefslogtreecommitdiff
path: root/web-client/voll/src/interfaces/IPatient.ts
diff options
context:
space:
mode:
Diffstat (limited to 'web-client/voll/src/interfaces/IPatient.ts')
-rw-r--r--web-client/voll/src/interfaces/IPatient.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/web-client/voll/src/interfaces/IPatient.ts b/web-client/voll/src/interfaces/IPatient.ts
new file mode 100644
index 0000000..911775c
--- /dev/null
+++ b/web-client/voll/src/interfaces/IPatient.ts
@@ -0,0 +1,6 @@
+import IEntity from "./IEntity";
+
+export default interface IPatient extends IEntity{
+ ssn: string
+ specialty: never
+} \ No newline at end of file