mirror of
https://github.com/antebudimir/tempus.git
synced 2025-12-31 17:43:32 +00:00
Add song/genre sync
This commit is contained in:
parent
b2c269a051
commit
76037e487b
47 changed files with 703 additions and 89 deletions
|
|
@ -19,6 +19,21 @@ import java.util.UUID;
|
|||
|
||||
@Entity(tableName = "song")
|
||||
public class Song implements Parcelable {
|
||||
@Ignore
|
||||
public static final String RECENTLY_PLAYED = "RECENTLY_PLAYED";
|
||||
|
||||
@Ignore
|
||||
public static final String MOST_PLAYED = "MOST_PLAYED";
|
||||
|
||||
@Ignore
|
||||
public static final String RECENTLY_ADDED = "RECENTLY_ADDED";
|
||||
|
||||
@Ignore
|
||||
public static final String BY_GENRE = "BY_GENRE";
|
||||
|
||||
@Ignore
|
||||
public static final String BY_ARTIST = "BY_ARTIST";
|
||||
|
||||
@NonNull
|
||||
@PrimaryKey
|
||||
@ColumnInfo(name = "id")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue