mirror of
https://github.com/openswarm-ai/openswarm.git
synced 2026-09-14 05:37:40 +02:00
9 lines
156 B
Python
9 lines
156 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class CardPosition(BaseModel):
|
|
id: str
|
|
x: float = 0
|
|
y: float = 0
|
|
width: float = 420
|
|
height: float = 280 |