oebb_py/classes/response.py
2017-11-02 13:43:46 +01:00

6 lines
130 B
Python

class Response:
def __init__(self, status, ctype, content):
self.status = status
self.ctype = ctype
self.content = content