Project member management

This commit is contained in:
Takeshi Kimata
2024-05-30 22:29:46 +09:00
parent abf2d48bee
commit db121940d8
13 changed files with 362 additions and 14 deletions

View File

@@ -68,3 +68,11 @@ export type AccountDropDownMessages = {
signIn: string;
signOut: string;
};
export type MemberType = {
id: number | null;
userId: number;
projectId: number;
role: number;
User: UserType;
};