AutorÃa | Ultima modificación | Ver Log |
package com.cesams.twogetskills.room;
public class ResultCount {
public int count;
public ResultCount(int count)
{
this.count = count;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
}