8 lines
111 B
Python
8 lines
111 B
Python
|
|
#!/usr/bin/python3
|
||
|
|
# -*- coding: UTF-8 -*-
|
||
|
|
|
||
|
|
from enum import Enum
|
||
|
|
class EventNo(Enum):
|
||
|
|
PDI = 100
|
||
|
|
PDO = 101
|