Files
popa_minecraft_launcher_api/app/models/server/command.py

8 lines
178 B
Python

from pydantic import BaseModel
from typing import Optional
class ServerCommand(BaseModel):
command: str
server_ip: str
require_online_player: Optional[bool] = False