/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package ru.sfedu.droolslab.models;
import java.io.Serializable;
/**
*
* @author entropy
*/
public class Deposit implements Serializable {
private int years;
private int amount;
private int interest;
public Deposit() {
}
public Deposit(int years, int amount, int interest) {
this.years = years;
this.amount = amount;
this.interest = interest;
}
public int getYears() {
return years;
}
public void setYears(int years) {
this.years = years;
}
public int getAmount() {
return amount;
}
public void setAmount(int amount) {
this.amount = amount;
}
public int getInterest() {
return interest;
}
public void setInterest(int interest) {
this.interest = interest;
}
}