from pycs.database.Result import Result class MediaImageLabel: def __init__(self, result: Result): self.label = result.label def serialize(self) -> dict: return dict({'type': 'image-label'}, **self.__dict__)