Skip to content
Snippets Groups Projects
Commit 76b6024f authored by Haidar's avatar Haidar
Browse files

feat: add Curenncy class

parent 7dbec256
Branches
Tags
No related merge requests found
package org.example.model;
public class Currency {
int point;
int uang;
public Currency(int point, int uang) {
this.point = point;
this.uang = uang;
}
public int getPoint() {
return point;
}
public void setPoint(int point) {
this.point = point;
}
public int getUang() {
return uang;
}
public void setUang(int uang) {
this.uang = uang;
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment