1// SPDX-FileCopyrightText: 2023 Jan Hecht 2// 3// SPDX-License-Identifier: MIT 4 5use serde::{Deserialize, Serialize}; 6 7#[derive(Clone, PartialEq, Debug, Deserialize, Serialize)] 8pub struct LevelType { 9 pub max: bool, 10 pub min: bool, 11 pub nom: bool, 12 pub typ: bool, 13}