mirror of
https://github.com/nihilvux/bancho.py.git
synced 2025-09-16 18:48:38 -07:00
9 lines
153 B
Python
9 lines
153 B
Python
from __future__ import annotations
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class OsuBeatmapRequestForm(BaseModel):
|
|
Filenames: list[str]
|
|
Ids: list[int]
|