12 lines
212 B
Python
12 lines
212 B
Python
from enum import Enum
|
|
|
|
|
|
class ValueType(Enum):
|
|
INT = 0,
|
|
STRING = 1
|
|
|
|
|
|
class ColumnValue:
|
|
def __init__(self, value, value_type: ValueType):
|
|
self.value = value
|
|
self.valueType = value_type |