aboutsummaryrefslogtreecommitdiff
path: root/src/ext/voice/connection_info.rs
blob: 282b5f12a0ec4e66a4eb2c8250e033e1a4b3ae9e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
use ::model::UserId;

#[derive(Clone, Debug)]
pub struct ConnectionInfo {
    pub endpoint: String,
    pub session_id: String,
    pub target_id: u64,
    pub token: String,
    pub user_id: UserId,
}