mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-01-11 22:40:36 +00:00
15 lines
255 B
Dart
15 lines
255 B
Dart
import 'package:isar/isar.dart';
|
|
part 'category.g.dart';
|
|
|
|
@collection
|
|
@Name("Category")
|
|
class Category {
|
|
Id? id;
|
|
String? name;
|
|
bool? forManga;
|
|
Category({
|
|
this.id = Isar.autoIncrement,
|
|
required this.name,
|
|
required this.forManga
|
|
});
|
|
}
|