package testtool.StudentTesting;

import testtool.Proctoring.*;
import testtool.Publish.*;

import java.util.Collection;

/**
 *
 * 
        A Date is the basic unit of calendar time keeping, consisting of numeric 
        date, month, and year.
     * 
 * @author 
 * @version 
 *
 **/

public class Date {

     /** Default Constructor **/
     public Date() {

     }

     protected int day;

     protected int month;

     protected int year;

}