mirror of
https://github.com/m5stack/StackChan.git
synced 2026-04-28 11:27:59 +00:00
12 lines
213 B
Dart
12 lines
213 B
Dart
/*
|
|
SPDX-FileCopyrightText: 2026 M5Stack Technology CO LTD
|
|
SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
class StackChanMusicInfo {
|
|
String name;
|
|
String url;
|
|
|
|
StackChanMusicInfo({required this.name, required this.url});
|
|
}
|