UpdataTime.java
328 Bytes
package com.dayu.bigfish.eventbus;
/**
* Created by yu on 2017/9/20.
*/
public class UpdataTime {
private int count;
public UpdataTime(int count) {
this.count = count;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
}