aboutsummaryrefslogtreecommitdiff
path: root/Sources/WmapParser/Map.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Sources/WmapParser/Map.swift')
-rw-r--r--Sources/WmapParser/Map.swift10
1 files changed, 10 insertions, 0 deletions
diff --git a/Sources/WmapParser/Map.swift b/Sources/WmapParser/Map.swift
new file mode 100644
index 0000000..7a25686
--- /dev/null
+++ b/Sources/WmapParser/Map.swift
@@ -0,0 +1,10 @@
+/// A parsed wardley map.
+public struct Map: Sendable {
+ public let components: [Component]
+ public let dependencies: [Dependency]
+ public let notes: [Note]
+ public let stages: [Stage]
+ public let groups: [Group]
+ public let inertias: [Inertia]
+ public let evolutions: [Evolution]
+}