Добавить src/main/java/org/lanit/models/Delete.java

This commit is contained in:
Шимченко 2025-09-12 05:44:50 +00:00
parent 356dc79556
commit 32ea0c3966

View 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; }
}