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