15 lines
447 B
Python
15 lines
447 B
Python
|
|
class PullStreamDto:
|
|
|
|
__slots__ = ('msg', 'context', 'pullQueue', 'fbQueue', 'hbQueue', 'imageQueue', 'analyse_type')
|
|
|
|
def __init__(self, msg, context, pullQueue, fbQueue, hbQueue, imageQueue, analyse_type):
|
|
self.msg = msg
|
|
self.context = context
|
|
self.pullQueue = pullQueue
|
|
self.fbQueue = fbQueue
|
|
self.hbQueue = hbQueue
|
|
self.imageQueue = imageQueue
|
|
self.analyse_type = analyse_type
|
|
|