Download
/**
 * @author: Dr. rer. nat. George Assaf (Brandenburg University of Technology (BTU), Cottbus, Germany)
 * @version: 1.0
 * @date: 2025-10-26
 * @description: Enumeration of different resource types used in appointments.
*/

package com.example.massp;

public enum ResourceType {
    CARDIOLOGY,
    NEUROLOGY
}