mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 04:49:21 +00:00
16 lines
233 B
Dart
16 lines
233 B
Dart
import 'api_request.dart';
|
|
|
|
/// New emoji information
|
|
///
|
|
/// @author Pierre HUBERT
|
|
|
|
class NewEmoji {
|
|
final String shortcut;
|
|
final BytesFile image;
|
|
|
|
const NewEmoji({
|
|
required this.shortcut,
|
|
required this.image,
|
|
});
|
|
}
|