snapdirect/src/snapshots/models.py

10 lines
170 B
Python
Raw Normal View History

2026-03-08 16:02:18 +00:00
from sqlalchemy.orm import Mapped
from src.models import CustomBase, IdMixin
class Snapshot(CustomBase, IdMixin):
__tablename__ = "snapshot"
url: Mapped[str]