mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-28 14:25:55 +08:00
16 lines
351 B
Dart
16 lines
351 B
Dart
import 'package:PiliPlus/models_new/video/video_stein_edgeinfo/edges.dart';
|
|
|
|
class EdgeInfoData {
|
|
Edges? edges;
|
|
|
|
EdgeInfoData({
|
|
this.edges,
|
|
});
|
|
|
|
factory EdgeInfoData.fromJson(Map<String, dynamic> json) => EdgeInfoData(
|
|
edges: json['edges'] == null
|
|
? null
|
|
: Edges.fromJson(json['edges'] as Map<String, dynamic>),
|
|
);
|
|
}
|