feat(db): StoryDeckEntry presentation table + StoryDeckKind enum

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
gamer147
2026-05-29 10:25:03 -04:00
parent 405f49c490
commit 75a2fca8bb
3 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace SVSim.Database.Enums;
/// <summary>
/// Which story deck-select group a prebuilt deck belongs to. Build = the named story decks
/// (build_deck_list); Trial = archetype trial decks (trial_deck_list). Stored as int.
/// </summary>
public enum StoryDeckKind
{
Build = 0,
Trial = 1,
}