Added new type to match fetch for project members

This commit is contained in:
Peter KW 2024-03-20 18:36:45 +01:00
parent 8250c92694
commit bca12151b7

View file

@ -132,6 +132,11 @@ export interface PublicUser {
userId: string;
username: string;
}
export interface UserProjectMember {
Username: string;
UserRole: string;
}
/**
* wrapper type for token
*/