mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2024-12-29 06:58:50 +00:00
11 lines
193 B
Rust
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>,
|
|
} |