Created
March 19, 2021 01:34
-
-
Save srdelarosa/af8d51aade87fcfe43ef4fc099963481 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.newhorizons.takeitnow.products.application.mainmodule.dto; | |
public class ProductDto { | |
private Long productId; | |
private String description; | |
private Double price; | |
public Long getProductId() { | |
return productId; | |
} | |
public void setProductId(Long productId) { | |
this.productId = productId; | |
} | |
public String getDescription() { | |
return description; | |
} | |
public void setDescription(String description) { | |
this.description = description; | |
} | |
public Double getPrice() { | |
return price; | |
} | |
public void setPrice(Double price) { | |
this.price = price; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment