mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2024-11-22 21:39:21 +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,
|
|
} |