package caltool.admin;

import mvp.Model;

/****
 *
 * Class Admin is the top-level model class in the admin package.  It defines
 * the objects and operations related to maintaining the user, group, room, and
 * global options databases of the Calendar Tool.
 *
 */

public class Admin extends Model {

    public Admin(mvp.View view) {
        super(view);
    }
}