Files
2023-09-14 17:44:02 +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