mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-14 11:01:06 +01:00
13 lines
250 B
Java
13 lines
250 B
Java
|
package nodomain.freeyourgadget.gadgetbridge.model;
|
||
|
|
||
|
/**
|
||
|
* Created by steffen on 07.06.16.
|
||
|
*/
|
||
|
public class MusicStateSpec {
|
||
|
public byte state;
|
||
|
public int position;
|
||
|
public int playRate;
|
||
|
public byte shuffle;
|
||
|
public byte repeat;
|
||
|
}
|