AutorÃa | Ultima modificación | Ver Log |
package com.cesams.twogetskills.room;
public class ResultTotalInt {
public int total;
public ResultTotalInt(int total)
{
this.total = total;
}
public int getTotal() {
return total;
}
public void setTotal(int total) {
this.total = total;
}
}