12 lines
169 B
Python
12 lines
169 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class UdidInfo:
|
|
host: str
|
|
port: int
|
|
user: str
|
|
pswd: str
|
|
app_name: str
|
|
bundle_id: str
|