use aion_package::{ContentHash, ManifestVersion};
use chrono::{DateTime, Utc};
#[derive(Clone, Debug, PartialEq, serde::Serialize, serde::Deserialize)]
pub struct WorkflowVersionInfo {
pub workflow_type: String,
pub content_hash: ContentHash,
pub deployed_entry_module: String,
pub entry_function: String,
pub manifest_version: ManifestVersion,
pub loaded_at: DateTime<Utc>,
pub route_active: bool,
}