mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-06 18:46:49 +00:00
16 lines
322 B
Rust
16 lines
322 B
Rust
|
use client::User;
|
||
|
use gpui::{ModelHandle, ViewHandle};
|
||
|
use project::Project;
|
||
|
use workspace::Workspace;
|
||
|
|
||
|
pub struct LocalParticipant {
|
||
|
user: User,
|
||
|
workspaces: Vec<ViewHandle<Workspace>>,
|
||
|
}
|
||
|
|
||
|
pub struct RemoteParticipant {
|
||
|
user: User,
|
||
|
workspaces: Vec<ViewHandle<Workspace>>,
|
||
|
active_workspace_id: usize,
|
||
|
}
|