Source code for tuxemon.cli.parameter

# SPDX-License-Identifier: GPL-3.0
# Copyright (c) 2014-2023 William Edwards <shadowapex@gmail.com>, Benjamin Bean <superman2k5@gmail.com>
from __future__ import annotations

import dataclasses


[docs]@dataclasses.dataclass class Parameter: """ Used to categorize and manage parameters for commands. """ name: str