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

package entities;

import java.util.Date;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.RequestScoped;

@ManagedBean
@RequestScoped
public class Studi {
  private Date start;

  public Date getStart() {
    return start;
  }

  public void setStart(Date start) {
    this.start = start;
  }

}
