mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-25 21:05:52 +08:00
9
lib/models_new/pgc/pgc_info_model/play_strategy.dart
Normal file
9
lib/models_new/pgc/pgc_info_model/play_strategy.dart
Normal file
@@ -0,0 +1,9 @@
|
||||
class PlayStrategy {
|
||||
List? strategies;
|
||||
|
||||
PlayStrategy({this.strategies});
|
||||
|
||||
factory PlayStrategy.fromJson(Map<String, dynamic> json) => PlayStrategy(
|
||||
strategies: json['strategies'],
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user