Source code for mops.mixins.objects.size

from dataclasses import dataclass


[docs]@dataclass class Size: """Represents the dimensions of an object with width and height.""" width: int | float | None = None height: int | float | None = None