12 lines
No EOL
226 B
Dart
12 lines
No EOL
226 B
Dart
import 'package:floor/floor.dart';
|
|
|
|
@entity
|
|
class RecipeSubStep {
|
|
@PrimaryKey(autoGenerate: true)
|
|
final int? id;
|
|
|
|
final String name;
|
|
final String description;
|
|
|
|
RecipeSubStep(this.name, this.description, {this.id});
|
|
} |