mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-05-12 13:30:39 +00:00
6 lines
86 B
Dart
6 lines
86 B
Dart
class MTrack {
|
|
String? file;
|
|
String? label;
|
|
|
|
MTrack({this.file, this.label});
|
|
}
|