8 lines
109 B
Python
8 lines
109 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class TargetVelocity:
|
|
vin: str
|
|
target_velocity: float
|