Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-07-26 21:07:20 +08:00
parent 3a78ead3a6
commit 39cc42d542
16 changed files with 64 additions and 49 deletions

View File

@@ -0,0 +1,10 @@
enum SourceType {
normal(-1),
archive(1),
watchLater(2),
fav(3),
playlist(3);
final int mediaType;
const SourceType(this.mediaType);
}