/*
 * JobType.java
 *
 * Created on January 6, 2003, 9:19 PM
 */

package org.ipov.timesheet;

import java.util.ArrayList;
import java.util.List;
import org.ipov.util.Money;
/**
 *
 * @author  sanders
 */
public class JobType {
    private int id = -1;
    private String title = null;
    private String description = null;
    
    /** Note: This really should be $/time-unit. */
    private Money payPerHour = new Money();
    private List employees = null;
    
    /** Creates a new instance of JobType */
    public JobType() {
        employees = new ArrayList();
    }
    
}
