from sqlmodel import SQLModel, Field class Listing(SQLModel, table=True): id: int = Field(primary_key=True)