12 lines
148 B
Python
12 lines
148 B
Python
from __future__ import annotations
|
|
|
|
from typing import List
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class Link:
|
|
label: str
|
|
url: str
|