use client::User; use gpui::{ModelHandle, ViewHandle}; use project::Project; use workspace::Workspace; pub struct LocalParticipant { user: User, workspaces: Vec>, } pub struct RemoteParticipant { user: User, workspaces: Vec>, active_workspace_id: usize, }