8 lines
120 B
Python
8 lines
120 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from sqlmodel import SQLModel
|
||
|
|
|
||
|
|
|
||
|
|
class TenantScoped(SQLModel, table=False):
|
||
|
|
pass
|