public ContainerString(string title, object value) { this.title = title; this.value = value.ToString(); this.useReference = false; this.storyIndex = default; }
public ContainerString(string title, StoryIndex value) { this.title = title; this.value = default; this.useReference = true; this.storyIndex = value; }