Source code for app.util.config.models.app_info
# SPDX-License-Identifier: GPLv3-or-later
# Copyright © 2025 pygaindalf Rui Pinheiro
from pydantic import DirectoryPath
from .config_path import ConfigFilePath
from . import BaseConfigModel
[docs]
class AppInfo(BaseConfigModel):
name : str
exe : str
version : VersionInfo
paths : PathsInfo
test : bool