6 lines
77 B
Python
6 lines
77 B
Python
from enum import Enum
|
|
|
|
class DataFormat(Enum):
|
|
Raw = 0
|
|
Formatted = 1
|