mangayomi-mirror/lib/eval/model/m_track.dart
kodjomoustapha 243962c6bb Refactor
2023-10-24 21:20:41 +01:00

6 lines
86 B
Dart

class MTrack {
String? file;
String? label;
MTrack({this.file, this.label});
}