mirror of
https://github.com/h7x4/Jisho-Study-Tool.git
synced 2024-12-22 22:07:29 +01:00
14 lines
166 B
Dart
14 lines
166 B
Dart
import 'package:objectbox/objectbox.dart';
|
|
|
|
@Entity()
|
|
class KanjiQuery {
|
|
int id;
|
|
|
|
String kanji;
|
|
|
|
KanjiQuery({
|
|
this.id = 0,
|
|
required this.kanji,
|
|
});
|
|
}
|