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

10 lines
197 B
Rust
Raw Normal View History

2020-06-30 07:50:31 +00:00
//! # Friendship status
//!
//! @author Pierre Hubert
pub struct FriendshipStatus {
pub are_friend: bool,
pub sent_request: bool,
pub received_request: bool,
pub following: bool,
}