Interface UserListItem

interface UserListItem {
    email: string;
    id: string;
    mode: UserMode;
    name: string;
    status?: UserStatus;
}

Properties

Properties

email: string
id: string
mode: UserMode
name: string
status?: UserStatus