Files
PiliPlus/lib/models_new/video/video_play_info/view_point.dart
2026-04-05 12:11:22 +08:00

24 lines
395 B
Dart

class ViewPoint {
int? type;
int? from;
int? to;
String? content;
String? imgUrl;
ViewPoint({
this.type,
this.from,
this.to,
this.content,
this.imgUrl,
});
factory ViewPoint.fromJson(Map<String, dynamic> json) => ViewPoint(
type: json["type"],
from: json["from"],
to: json["to"],
content: json["content"],
imgUrl: json["imgUrl"],
);
}