12 lines
161 B
Java
Raw Normal View History

package com.baeldung.javers;
public class Address {
private String country;
public Address(String country) {
this.country = country;
}
}