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

15 lines
235 B
Dart

import 'package:comunic/enums/likes_type.dart';
/// Element that can be liked by the user
///
/// @author Pierre HUBERT
abstract class LikeElement {
LikesType get likeType;
int get id;
late bool userLike;
late int likes;
}