From 96d70d5048b89324266f33468ab3a3ea4c771604 Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Tue, 1 Dec 2020 18:07:39 +0100 Subject: [PATCH] Added group contact class ref #11 --- src/models/GroupContact.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/models/GroupContact.ts diff --git a/src/models/GroupContact.ts b/src/models/GroupContact.ts new file mode 100644 index 0000000..e243d00 --- /dev/null +++ b/src/models/GroupContact.ts @@ -0,0 +1,8 @@ +import { Entity } from "typeorm"; +import { Participant } from "./Participant"; + +/** + * Defines a group's contact. +*/ +@Entity() +export class GroupContact extends Participant{} \ No newline at end of file