1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-05-14 15:01:05 +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,
}