1
0
Fork 0
mirror of https://github.com/correl/openapi-core.git synced 2025-03-25 09:16:05 -09:00
openapi-core/openapi_core/schema/infos/models.py
2018-05-25 11:30:50 +01:00

8 lines
160 B
Python

"""OpenAPI core infos models module"""
class Info(object):
def __init__(self, title, version):
self.title = title
self.version = version