11 lines
287 B
Python
11 lines
287 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from typing import Self, Any
|
|
|
|
class QueryResponseModel:
|
|
|
|
def __init__(self:Self) -> None:
|
|
self.tables:list[list[list[Any|None]]] = []
|
|
self.columns:list[list[str]] = []
|
|
self.variables:dict[str, Any|None] = {} |