mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-20 00:56:31 +08:00
10 lines
205 B
Dart
10 lines
205 B
Dart
class PlayStrategy {
|
|
List? strategies;
|
|
|
|
PlayStrategy({this.strategies});
|
|
|
|
factory PlayStrategy.fromJson(Map<String, dynamic> json) => PlayStrategy(
|
|
strategies: json['strategies'],
|
|
);
|
|
}
|