mirror of
https://github.com/rjNemo/federation
synced 2026-06-06 10:16:39 +00:00
9 lines
129 B
Python
9 lines
129 B
Python
from pydantic.dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class Product:
|
|
upc: str
|
|
name: str
|
|
price: int
|
|
weight: int
|