aboutsummaryrefslogtreecommitdiff
path: root/Sources/WmapParser/DataStructures/Map.swift
blob: dbb3c7d4dcb41b8bc19d925cbce2d0780e14db39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
extension WmapParser {
/// 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]
}
}