Blame |
Last modification |
View Log
| Download
| RSS feed
package br.com.sl.domain.dto.robo;
public class ProfitTick
{
private final String symbol
;
private final java.
time.
LocalDateTime dateTime
;
private final java.
math.
BigDecimal price
;
public ProfitTick
(String symbol, java.
time.
LocalDateTime dateTime, java.
math.
BigDecimal price
) {
this.
symbol = symbol
;
this.
dateTime = dateTime
;
this.
price = price
;
}
public String getSymbol
() {
return symbol
;
}
public java.
time.
LocalDateTime getDateTime
() {
return dateTime
;
}
public java.
math.
BigDecimal getPrice
() {
return price
;
}
}