15 lines
No EOL
245 B
Dart
15 lines
No EOL
245 B
Dart
|
|
import 'package:hive/hive.dart';
|
|
|
|
part 'RecipeSubStep.g.dart';
|
|
|
|
@HiveType(typeId: 3)
|
|
class RecipeSubStep extends HiveObject {
|
|
@HiveField(0)
|
|
String name;
|
|
|
|
@HiveField(1)
|
|
String description;
|
|
|
|
RecipeSubStep(this.name, this.description);
|
|
} |