mirror of
https://github.com/h7x4/Jisho-Study-Tool.git
synced 2025-03-09 22:13:28 +01:00
19 lines
316 B
Dart
19 lines
316 B
Dart
import 'package:objectbox/objectbox.dart';
|
|
|
|
import './word_result.dart';
|
|
|
|
@Entity()
|
|
class WordQuery {
|
|
int id;
|
|
|
|
String query;
|
|
|
|
// TODO: Link query with results that the user clicks onto.
|
|
@Backlink()
|
|
final chosenResults = ToMany<WordResult>();
|
|
|
|
WordQuery({
|
|
this.id = 0,
|
|
required this.query,
|
|
});
|
|
} |