mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 03:06:59 +08:00
15 lines
253 B
Dart
15 lines
253 B
Dart
class MatchTeam {
|
|
String? title;
|
|
String? logo;
|
|
|
|
MatchTeam({
|
|
this.title,
|
|
this.logo,
|
|
});
|
|
|
|
factory MatchTeam.fromJson(Map<String, dynamic> json) => MatchTeam(
|
|
title: json['title'] as String?,
|
|
logo: json['logo'] as String?,
|
|
);
|
|
}
|