Files
MrbWebLibre/app/lib/features/web_view/domain/entities/abstract/tab.dart
T
2024-09-13 09:11:06 +02:00

11 lines
199 B
Dart

import 'package:drift/drift.dart';
abstract interface class ITab {
String get id;
Uri get url;
String? get title;
String? get topicId;
Favicon? get favicon;
Uint8List? get screenshot;
}