mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-23 05:19:22 +00:00
11 lines
149 B
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;
|
||
|
|
||
|
}
|