12 lines
190 B
Python
12 lines
190 B
Python
from typing import List
|
|
from uuid import UUID
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
|
|
class SelectGet(BaseModel):
|
|
"""The response from the `SelectGet` command."""
|
|
|
|
entity_ids: List[UUID]
|