11 lines
165 B
Python
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
|