Commit.java 949 Bytes
package it.nexus.android.interview;

import java.io.Serializable;
import java.util.Date;

/**
 * Created by kel666 on 12/01/17.
 */
public class Commit implements Serializable {
    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getAuthor() {
        return author;
    }

    public void setAuthor(String author) {
        this.author = author;
    }

    public String getMsg() {
        return msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }

    public Date getDate() {
        return date;
    }

    public void setDate(Date date) {
        this.date = date;
    }

    private String id;
    private String title;
    private String author;
    private String msg;
    private Date date;
}