package com.db4o.bench;

import java.util.Date;

public class Document
{
	public String title;
	public Date creationDate;
	
	public Document(){
	}
	
	public Document(String title){
		this.title = title;
		creationDate = new Date();
	}
	
}
