23 lines
532 B
Dart
23 lines
532 B
Dart
// import 'package:objectbox/objectbox.dart';
|
|
// import 'package:unofficial_jisho_api/api.dart' as jisho;
|
|
|
|
// TODO: Rewrite for sembast
|
|
|
|
// @Entity()
|
|
// class ExampleSentencePiece {
|
|
// int id;
|
|
// String? lifted;
|
|
// String unlifted;
|
|
|
|
// ExampleSentencePiece({
|
|
// this.id = 0,
|
|
// required this.lifted,
|
|
// required this.unlifted,
|
|
// });
|
|
|
|
// ExampleSentencePiece.fromJishoObject(jisho.ExampleSentencePiece object)
|
|
// : id = 0,
|
|
// lifted = object.lifted,
|
|
// unlifted = object.unlifted;
|
|
// }
|