| 221 | |
| 222 | @dataclass |
| 223 | class Image: |
| 224 | uri: str = pyfory.field(id=1) |
| 225 | title: str = pyfory.field(id=2) |
| 226 | width: pyfory.Int32 = pyfory.field(id=3) |
| 227 | height: pyfory.Int32 = pyfory.field(id=4) |
| 228 | size: Size = pyfory.field(id=5) |
| 229 | |
| 230 | |
| 231 | @dataclass |
no test coverage detected