1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 15:03:22 +00:00
comunicmobile/lib/models/like_element.dart

11 lines
149 B
Dart

/// Element that can be liked by the user
///
/// @author Pierre HUBERT
abstract class LikeElement {
int get id;
bool userLike;
int likes;
}