Initial commit
This commit is contained in:
12
lib/domain/entities/program.dart
Normal file
12
lib/domain/entities/program.dart
Normal file
@@ -0,0 +1,12 @@
|
||||
import 'package:freezed_annotation/freezed_annotation.dart';
|
||||
|
||||
part 'program.freezed.dart';
|
||||
|
||||
@freezed
|
||||
class ProgramEntity with _$ProgramEntity {
|
||||
const factory ProgramEntity({
|
||||
required String id,
|
||||
required String name,
|
||||
required String createdAt,
|
||||
}) = _ProgramEntity;
|
||||
}
|
||||
Reference in New Issue
Block a user