1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-01-01 00:18:50 +00:00
comunicapiv3/src/data/api_client.rs

11 lines
193 B
Rust
Raw Normal View History

2020-05-23 09:00:53 +00:00
/// API client information
///
/// @author Pierre HUBERT
#[derive(Debug)]
pub struct APIClient {
pub id: u32,
pub name: String,
pub token: String,
pub domain: Option<String>,
}