Source code for mantidimaging.gui.dialogs.cor_inspection.types

# Copyright (C) 2024 ISIS Rutherford Appleton Laboratory UKRI
# SPDX - License - Identifier: GPL-3.0-or-later
from __future__ import annotations

from enum import Enum


[docs] class ImageType(Enum): LESS = 0 CURRENT = 1 MORE = 2