OSDN Git Service

feat: added Album type fetch class
[delesterandomselector/DelesteRandomSelector.git] / src / com / ranfa / lib / Album.java
1 package com.ranfa.lib;
2
3 public class Album {
4
5         private String songName;
6         private String albumType;
7
8         public String getSongName() {
9                 return songName;
10         }
11         public void setSongName(String songName) {
12                 this.songName = songName;
13         }
14         public String getAlbumType() {
15                 return albumType;
16         }
17         public void setAlbumType(String albumType) {
18                 this.albumType = albumType;
19         }
20
21 }