mirror of
https://github.com/Telecominfraproject/oopt-gnpy-api.git
synced 2025-10-29 09:02:39 +00:00
9 lines
173 B
Python
9 lines
173 B
Python
# coding: utf-8
|
|
|
|
|
|
class Result:
|
|
|
|
def __init__(self, message: str = None, description: str = None):
|
|
self.message = message
|
|
self.description = description
|