Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created April 20, 2021 19:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/e0747dfc8004c63f331c65f2f6dc94fd to your computer and use it in GitHub Desktop.
Save parzibyte/e0747dfc8004c63f331c65f2f6dc94fd to your computer and use it in GitHub Desktop.
abstract class Dinero {
private double dinero;
private String description;
public double getDinero() {
return dinero;
}
public void setDinero(double dinero) {
this.dinero = dinero;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment