1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-01-07 03:12:36 +00:00
comunicapiv3/src/data/user_token.rs
2020-05-24 16:35:54 +02:00

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
}