mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 21:09:21 +00:00
15 lines
225 B
Dart
15 lines
225 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;
|
|
|
|
bool userLike;
|
|
int likes;
|
|
}
|