11 lines
199 B
Python
11 lines
199 B
Python
import datetime as dt
|
|
|
|
|
|
# generic command for delete, start, stop of the monitoring
|
|
class VRPMDV_GenericMonCmd:
|
|
def __init__(self, id , cmdId) :
|
|
self.id = id
|
|
self.cmdId = cmdId
|
|
|
|
|