Files
EasyDrop/src/main/java/de/rwu/easydrop/model/Offer.java
2023-06-27 05:23:43 +02:00

32 lines
518 B
Java

package de.rwu.easydrop.model;
import lombok.Data;
/**
* An Offer.
*
* @since 0.3.0
*/
@Data
public class Offer {
/**
* ID of the offer, built from identifiers of the source platforms.
*/
private String offerId;
/**
* The product that our software buys.
*/
private Product sourceProduct;
/**
* The product that our software sells.
*/
private Product targetProduct;
/**
* Date of last update of the offer.
*/
private String lastUpdate;
}