blob: de348ef86ee36b1f937fba2c50f77019229e6bca (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import type { ProjectRole } from "./ProjectRole"
export type ProjectMember = {
id: string,
name: string,
role: ProjectRole,
email: string,
userId?: string,
customerId?: string
}
|