mirror of
https://github.com/Telecominfraproject/oopt-gnpy-api.git
synced 2025-12-30 18:20:49 +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
|