9 lines
180 B
Python
9 lines
180 B
Python
from sqlalchemy.orm import Mapped
|
|
|
|
from .base import Base, CommonMixin, PasswordMixin
|
|
|
|
|
|
class User(Base, CommonMixin, PasswordMixin):
|
|
"""Product."""
|
|
|
|
username: Mapped[str]
|