1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2024-11-22 21:39:21 +00:00
comunicapiv3/src/data/friendship_status.rs

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,
}