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