mirror of
https://github.com/Eledio/superfaktura-client.git
synced 2025-11-01 16:11:18 +01:00
7 lines
88 B
Python
7 lines
88 B
Python
import enum
|
|
|
|
|
|
class DataFormat(enum.Enum):
|
|
JSON = enum.auto()
|
|
PDF = enum.auto()
|