Deleted file from evaluation

This commit is contained in:
priyeshmashelkar
2018-07-02 12:29:05 +01:00
committed by GitHub
parent 9da2a97419
commit 3e3e577eee
@@ -1,32 +0,0 @@
package com.baeldung.reactive.model;
import java.math.BigDecimal;
public class Stock {
private String code;
private BigDecimal price;
public Stock(String code, BigDecimal price) {
this.code = code;
this.price = price;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public BigDecimal getPrice() {
return price;
}
public void setPrice(BigDecimal price) {
this.price = price;
}
}