mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-25 11:09:53 +00:00
10 lines
200 B
Python
10 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
|