/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package gy2messages;

import java.util.List;

/**
 *
 * @author lengyel
 */
public class Message {
    public List<String> lines;

    private int idx;

    public int getIdx() {
        return idx;
    }

    public void setIdx(int idx) {
        this.idx = idx;
    }
}
