mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-04-19 22:22:05 +00:00
15 lines
319 B
Dart
15 lines
319 B
Dart
import 'package:hive/hive.dart';
|
|
import 'package:mangayomi/models/model_manga.dart';
|
|
part 'categories.g.dart';
|
|
|
|
@HiveType(typeId: 8)
|
|
class CategoriesModel extends HiveObject {
|
|
@HiveField(0)
|
|
final int id;
|
|
@HiveField(1)
|
|
final String name;
|
|
CategoriesModel({
|
|
required this.id,
|
|
required this.name,
|
|
});
|
|
}
|