mirror of
https://gitlab.com/fabinfra/fabaccess/fabfire_adapter.git
synced 2025-03-12 14:51:50 +01:00
10 lines
201 B
Python
10 lines
201 B
Python
|
from dataclasses import dataclass
|
||
|
from typing import Optional
|
||
|
|
||
|
|
||
|
@dataclass(frozen=True)
|
||
|
class Host:
|
||
|
hostname: str
|
||
|
port: int
|
||
|
username: Optional[str] = None
|
||
|
password: Optional[str] = None
|