Skip to content
Snippets Groups Projects
Commit 0c90b761 authored by Jenny's avatar Jenny
Browse files

more Classes

parent 3bc6c3f0
No related branches found
No related tags found
No related merge requests found
public class Date {
private int day;
private int month;
private int year;
public Date(int day, int month, int year) {
this.day = day;
this.month = month;
this.year = year;
}
}
public class User {
private String username;
private int id;
private String location;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment