oebb_py/classes/response.py

6 lines
130 B
Python
Raw Normal View History

2017-11-02 12:43:46 +00:00
class Response:
def __init__(self, status, ctype, content):
self.status = status
self.ctype = ctype
self.content = content