Добавить src/main/java/org/lanit/models/Delete.java
This commit is contained in:
parent
356dc79556
commit
32ea0c3966
16
src/main/java/org/lanit/models/Delete.java
Normal file
16
src/main/java/org/lanit/models/Delete.java
Normal file
@ -0,0 +1,16 @@
|
||||
package org.lanit.models;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
|
||||
public class Delete {
|
||||
@JsonProperty("tickerName")
|
||||
private String tickerName;
|
||||
|
||||
@JsonProperty("alertIndex")
|
||||
private int alertIndex;
|
||||
|
||||
public String getTickerName() { return tickerName; }
|
||||
public void setTickerName(String tickerName) { this.tickerName = tickerName; }
|
||||
public int getAlertIndex() { return alertIndex; }
|
||||
public void setAlertIndex(int alertIndex) { this.alertIndex = alertIndex; }
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user