view PerfsDb/DbSize.py @ 610:ec657d1a62a6 Orthanc-1.12.3

fix compatibility with python3
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 31 Jan 2024 12:18:20 +0100
parents df1f9946571c
children
line wrap: on
line source

from enum import Enum

class DbSize(Enum):
    Small = 1
    Large = 2
    Tiny = 3
    Medium = 4