mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-25 03:00:11 +00:00
9 lines
200 B
Python
9 lines
200 B
Python
"""OpenAPI core contacts models module"""
|
|
|
|
|
|
class Contact(object):
|
|
|
|
def __init__(self, name=None, url=None, email=None):
|
|
self.name = name
|
|
self.url = url
|
|
self.email = email
|