46 lines
963 B
Dart
46 lines
963 B
Dart
import 'package:json_annotation/json_annotation.dart';
|
|
import 'package:yimaru_app/models/access.dart';
|
|
|
|
part 'learn_program.g.dart';
|
|
@JsonSerializable()
|
|
class LearnProgram {
|
|
final int? id;
|
|
|
|
final String? name;
|
|
|
|
final Access? access;
|
|
|
|
final String? description;
|
|
|
|
@JsonKey(name: 'sort_order')
|
|
final int? sortOrder;
|
|
|
|
const LearnProgram({
|
|
this.id,
|
|
this.name,
|
|
this.access,
|
|
this.sortOrder,
|
|
this.description,
|
|
});
|
|
|
|
LearnProgram copyWith({
|
|
int? id,
|
|
String? name,
|
|
Access? access,
|
|
int? sortOrder,
|
|
String? description,
|
|
}) {
|
|
return LearnProgram(
|
|
id: id ?? this.id,
|
|
name: name ?? this.name,
|
|
access: access ?? this.access,
|
|
sortOrder: sortOrder ?? this.sortOrder,
|
|
description: description ?? this.description,
|
|
);
|
|
}
|
|
|
|
factory LearnProgram.fromJson(Map<String, dynamic> json) =>
|
|
_$LearnProgramFromJson(json);
|
|
|
|
Map<String, dynamic> toJson() => _$LearnProgramToJson(this);
|
|
} |