wangzhibo
4 天以前 ae6f40460dcd56af6c5f60ba52c883854c3bac55
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package nodomain.freeyourgadget.gadgetbridge.impl;
 
import java.io.Serializable;
 
public class GBDeviceMusic implements Serializable {
    private final int id;
    private final String title;
    private final String artist;
    private final String fileName;
 
    public GBDeviceMusic(int id, String title, String artist, String fileName) {
        this.id = id;
        this.title = title;
        this.artist = artist;
        this.fileName = fileName;
    }
 
    public int getId() {
        return id;
    }
 
    public String getTitle() {
        return title;
    }
 
    public String getArtist() {
        return artist;
    }
 
    public String getFileName() {
        return fileName;
    }
}