peternameyakj
2025-04-29 acf1c75a32aa05f34d9d60b6ae3f3e052b532e9f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package project.data.model;
 
import java.io.Serializable;
 
/**
 * An depth entry consisting of price and amount.
 */
public class DepthEntry  implements Serializable {
    /**
     * 
     */
    private static final long serialVersionUID = -2177789072570310524L;
    
    private Double price;
    
    private Double amount;
 
    public Double getPrice() {
        return price;
    }
 
    public void setPrice(Double price) {
        this.price = price;
    }
 
    public Double getAmount() {
        return amount;
    }
 
    public void setAmount(Double amount) {
        this.amount = amount;
    }
 
}