use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AppInfo {
pub app_id: String,
pub app_name: String,
pub description: Option<String>,
pub status: String,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DirectoryItem {
pub id: String,
pub name: String,
pub item_type: String,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SystemSettings {
pub key: String,
pub value: String,
pub description: Option<String>,
}
pub mod api_endpoints;
pub mod api_utils;
pub mod constants;