mirror of
https://github.com/rjNemo/federation
synced 2026-06-06 02:06:39 +00:00
12 lines
212 B
Python
12 lines
212 B
Python
from pydantic.dataclasses import dataclass
|
|
|
|
from product.models.product import Product
|
|
from user.models.user import User
|
|
|
|
|
|
@dataclass
|
|
class Review:
|
|
id: int
|
|
body: str
|
|
author: User
|
|
product: Product
|