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