Initial commit
This commit is contained in:
13
lib/domain/entities/program_week.dart
Normal file
13
lib/domain/entities/program_week.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
import 'package:freezed_annotation/freezed_annotation.dart';
|
||||
|
||||
part 'program_week.freezed.dart';
|
||||
|
||||
@freezed
|
||||
class ProgramWeekEntity with _$ProgramWeekEntity {
|
||||
const factory ProgramWeekEntity({
|
||||
required String id,
|
||||
required String programId,
|
||||
required int position,
|
||||
String? notes,
|
||||
}) = _ProgramWeekEntity;
|
||||
}
|
||||
Reference in New Issue
Block a user