Created
March 28, 2025 10:31
-
-
Save ashish-mj/53b9ef174655db199a6fac91f4f0d857 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from dataclasses import dataclass | |
from datetime import datetime | |
@dataclass | |
class Product: | |
id: str | |
description: str | |
price: float | |
status: str | |
created_at: datetime | |
type: str |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment