Python-With-Gtk-Template/src/libs/models.py

16 lines
289 B
Python
Raw Normal View History

2023-09-18 01:08:09 +00:00
# Python imports
from typing import Optional
2023-09-18 01:08:09 +00:00
# Lib imports
from sqlmodel import SQLModel, Field
2023-09-18 01:08:09 +00:00
# Application imports
2023-09-18 01:08:09 +00:00
class User(SQLModel, table = True):
id: Optional[int] = Field(default = None, primary_key = True)
name: str
password: str
email: Optional[str] = None