fastapi_django_main_live / controllers /VMware /sakura_server_config.py
kenken999's picture
vmwre
a2b7723
raw
history blame
308 Bytes
class SakuraServerConfig:
"""Represents the configuration for the Sakura Server"""
def __init__(self, hostname: str, ip_address: str, username: str, password: str):
self.hostname = hostname
self.ip_address = ip_address
self.username = username
self.password = password