mirror of
https://github.com/azaion/gps-denied-onboard.git
synced 2026-06-21 22:31:13 +00:00
0c8f186598
docs -> _docs
11 lines
180 B
Python
11 lines
180 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class ImageBatch(BaseModel):
|
|
images: list[bytes]
|
|
filenames: list[str]
|
|
start_sequence: int
|
|
end_sequence: int
|
|
batch_number: int
|
|
|