Files
litestar-machines-test/app/lib/filters.py
2023-08-27 11:08:14 +02:00

11 lines
165 B
Python

from dataclasses import dataclass
from typing import Generic, TypeVar
T = TypeVar("T")
@dataclass
class ExactFilter(Generic[T]):
field_name: str
value: T