1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2024-12-29 06:58:50 +00:00
comunicapiv3/src/data/api_client.rs

11 lines
193 B
Rust

/// API client information
///
/// @author Pierre HUBERT
#[derive(Debug)]
pub struct APIClient {
pub id: u32,
pub name: String,
pub token: String,
pub domain: Option<String>,
}