1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 06:53:23 +00:00
comunicmobile/lib/models/new_comment.dart
2022-03-11 17:13:54 +01:00

22 lines
369 B
Dart

import 'api_request.dart';
/// New comment information
///
/// @author Pierre HUBERT
class NewComment {
final int postID;
final String content;
final BytesFile? image;
const NewComment({
required this.postID,
required this.content,
required this.image,
});
bool get hasContent => content.length > 0;
bool get hasImage => image != null;
}