mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2024-11-26 23:39:22 +00:00
10 lines
197 B
Rust
10 lines
197 B
Rust
|
//! # Friendship status
|
||
|
//!
|
||
|
//! @author Pierre Hubert
|
||
|
|
||
|
pub struct FriendshipStatus {
|
||
|
pub are_friend: bool,
|
||
|
pub sent_request: bool,
|
||
|
pub received_request: bool,
|
||
|
pub following: bool,
|
||
|
}
|