Skip to content

Instantly share code, notes, and snippets.

@brunokrebs
Last active July 7, 2016 14:07
Show Gist options
  • Save brunokrebs/795f1ebdd442c5cbe6b732e67db5c5dc to your computer and use it in GitHub Desktop.
Save brunokrebs/795f1ebdd442c5cbe6b732e67db5c5dc to your computer and use it in GitHub Desktop.
package com.someaddress.model;
public class Product {
private String id;
private String name;
private String description;
private BigDecimal price;
private boolean active;
public Product() { }
// getters...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment