65 lines
1.3 KiB
Dart
65 lines
1.3 KiB
Dart
import 'package:json_annotation/json_annotation.dart';
|
|
import 'package:yimaru_app/models/access.dart';
|
|
|
|
part 'learn_module.g.dart';
|
|
@JsonSerializable()
|
|
class LearnModule {
|
|
final int? id;
|
|
|
|
final String? icon;
|
|
|
|
final String? name;
|
|
|
|
final Access? access;
|
|
|
|
final String? description;
|
|
|
|
@JsonKey(name: 'program_id')
|
|
final int? programId;
|
|
|
|
@JsonKey(name: 'course_id')
|
|
final int? courseId;
|
|
|
|
@JsonKey(name: 'sort_order')
|
|
final int? sortOrder;
|
|
|
|
const LearnModule({
|
|
this.id,
|
|
this.icon,
|
|
this.name,
|
|
this.access,
|
|
this.courseId,
|
|
this.sortOrder,
|
|
this.programId,
|
|
this.description,
|
|
});
|
|
|
|
LearnModule copyWith({
|
|
int? id,
|
|
String? icon,
|
|
String? name,
|
|
int? courseId,
|
|
Access? access,
|
|
int? programId,
|
|
int? sortOrder,
|
|
String? description,
|
|
|
|
}) {
|
|
return LearnModule(
|
|
id: id ?? this.id,
|
|
icon: icon ?? this.icon,
|
|
name: name ?? this.name,
|
|
access: access ?? this.access,
|
|
courseId: courseId ?? this.courseId,
|
|
sortOrder: sortOrder ?? this.sortOrder,
|
|
programId: programId ?? this.programId,
|
|
description: description ?? this.description,
|
|
|
|
);
|
|
}
|
|
|
|
factory LearnModule.fromJson(Map<String, dynamic> json) =>
|
|
_$LearnModuleFromJson(json);
|
|
|
|
Map<String, dynamic> toJson() => _$LearnModuleToJson(this);
|
|
} |