Skip to content

Instantly share code, notes, and snippets.

@anta40
Created September 21, 2022 12:41
Show Gist options
  • Save anta40/ee96ff7e78db2bba88765b108a32ac06 to your computer and use it in GitHub Desktop.
Save anta40/ee96ff7e78db2bba88765b108a32ac06 to your computer and use it in GitHub Desktop.
package com.anta40.app.countrycruddemo;
public class Country {
private int id;
private String name;
private int population;
public Country(int id, String name, int population){
this.id = id;
this.name = name;
this.population = population;
}
public int getId() { return id; }
public String getName() { return name; }
public int getPopulation() { return population; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment