mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2025-01-01 00:18: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>,
|
||
|
}
|