You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

33 lines
742 B

import 'package:huixiang/data/author.dart';
import 'package:json_annotation/json_annotation.dart';
part 'course_details.g.dart';
@JsonSerializable(explicitToJson: true)
class CourseDetails {
String? id = '';
String? createTime = '';
String? createUser = '';
String? updateTime = '';
String? updateUser = '';
String? categoryId = '';
String? subject = '';
List<String>? tags = [];
String? coverImg = '';
Author? author;
String? introduce = '';
int? viewers = 0;
int? likes = 0;
bool? selfLiked = false;
bool? state = false;
int? isDelete = 0;
CourseDetails();
factory CourseDetails.fromJson(Map<String, dynamic> json) => _$CourseDetailsFromJson(json);
Map<String, dynamic> toJson() => _$CourseDetailsToJson(this);
}