2025-02-19 13:02:10 +01:00

10 lines
239 B
Python
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

from sqlmodel import SQLModel, Field
from uuid import uuid4, UUID
class Owner(SQLModel, table=True):
id: UUID = Field(default_factory=uuid4, primary_key=True)
name: str
email: str
# TODO add user_id
# TODO add houses