• Roham's avatar
    first · 7206aba8
    Roham authored
    7206aba8
Publication.java 217 Bytes
package org.university.core;

public class Publication {
    private String title;
    private int year;

    public Publication(String title, int year) {
        this.title = title;
        this.year = year;
    }
}