OSDN Git Service

fix: fix async process order.
[delesterandomselector/DelesteRandomSelector.git] / src / com / ranfa / lib / SongJSONProperty.java
1 package com.ranfa.lib;
2
3 import java.util.List;
4
5 public class SongJSONProperty {
6
7         private List<Song> list;
8
9         public List<Song> getList() {
10                 return list;
11         }
12
13         public void setList(List<Song> list) {
14                 this.list = list;
15         }
16
17 }