mirror of
https://github.com/kennethreitz/pydantic.git
synced 2026-06-05 23:00:18 +00:00
17 lines
238 B
Python
17 lines
238 B
Python
from pydantic import AnyUrl
|
|
from pydantic.dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class NavbarButton:
|
|
href: AnyUrl
|
|
|
|
|
|
@dataclass
|
|
class Navbar:
|
|
button: NavbarButton
|
|
|
|
|
|
navbar = Navbar(button=('https://example.com',))
|
|
print(navbar)
|