Files
PiliPlus/lib/models_new/match/match_info/team.dart
2026-04-05 12:11:22 +08:00

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?,
);
}