1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-01-08 03:32:35 +00:00
comunicapiv3/src/data/user_token.rs

11 lines
215 B
Rust
Raw Normal View History

2020-05-24 14:35:54 +00:00
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
}