aboutsummaryrefslogtreecommitdiff
path: root/Sources/WmapParser/DataStructures/Map.swift
blob: 776ba1836e48bd16dafb402b52e1abf051d2fc5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
extension WmapParser {
  /// A parsed wardley map.
  public struct Map: Sendable, Equatable {
    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]
  }
}