mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-25 19:19:55 +00:00
9 lines
160 B
Python
9 lines
160 B
Python
|
"""OpenAPI core infos models module"""
|
||
|
|
||
|
|
||
|
class Info(object):
|
||
|
|
||
|
def __init__(self, title, version):
|
||
|
self.title = title
|
||
|
self.version = version
|