unitex-webservice/objectify.py

10 lines
201 B
Python
Raw Normal View History

2017-09-02 05:04:28 +00:00
#!/usr/bin;env python3
# -*- encoding: utf-8 -*-
class Objectify(object):
def __init__(self, d: dict):
self.__dict__ = d
@property
def as_dict(self):
return self.__dict__