Continued creating the entity system

This commit is contained in:
Tiago Ribeiro
2024-10-01 17:39:43 +01:00
parent bae02e5192
commit 564e6438cb
37 changed files with 2522 additions and 130 deletions

View File

@@ -1,5 +1,11 @@
import {User} from "./user";
export interface Invite {
id: string;
from: string;
to: string;
id: string;
from: string;
to: string;
}
export interface InviteWithUsers extends Omit<Invite, "from"> {
from?: User;
}