your-workflow/backend/app/models/schemas/client.py

11 lines
186 B
Python

from pydantic import BaseModel
from .system import BaseResponse
import hashlib
class ClientRequest(BaseModel):
port: int
host: str
password: str
user: str
name: str