mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-05-04 16:49:49 -05:00
9 lines
182 B
Python
9 lines
182 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class DesiredWorkerLabel(BaseModel):
|
|
value: str | int
|
|
required: bool = False
|
|
weight: int | None = None
|
|
comparator: int | None = None
|