using System.Collections.Generic; namespace BriarQueen.Data.Identifiers { public enum PuzzleKey { AshwickMarketGate, } public static class PuzzleIdentifiers { public static readonly Dictionary AllPuzzles = new() { { PuzzleKey.AshwickMarketGate, "CH1:Puzzle:AshwickMarketGate" }, }; // Optional helper to get all puzzle IDs public static IEnumerable GetAllPuzzleIDs() { return AllPuzzles.Values; } } }