-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
sosauce
committed
Apr 30, 2024
1 parent
6775ef2
commit 9ab6193
Showing
43 changed files
with
1,381 additions
and
1,281 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
package com.sosauce.cutemusic.audio | ||
|
||
import android.net.Uri | ||
import androidx.compose.runtime.Immutable | ||
|
||
@Immutable | ||
data class Music( | ||
val id: Long, | ||
val title: String, | ||
val artist: String, | ||
val album: String, | ||
val uri: Uri | ||
) | ||
) | ||
|
||
data class Album( | ||
val id: Long, | ||
val name: String, | ||
val artist: String, | ||
val numberOfSongs: Int, | ||
val uri: Uri | ||
) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.