mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2025-01-07 03:12:36 +00:00
11 lines
215 B
Rust
11 lines
215 B
Rust
use crate::data::user::UserID;
|
|
|
|
/// User access token information
|
|
///
|
|
/// Author : Pierre Hubert
|
|
#[derive(Debug)]
|
|
pub struct UserAccessToken {
|
|
pub user_id: UserID,
|
|
pub client_id: u32,
|
|
pub token: String
|
|
} |