11 lines
261 B
C#
11 lines
261 B
C#
using System.Collections.Generic;
|
|
|
|
public class StoryInfo : HeaderData
|
|
{
|
|
public List<StoryChapterData> ChapterDataList { get; set; } = new List<StoryChapterData>();
|
|
|
|
public bool IsPreBuildDeck { get; set; }
|
|
|
|
public bool IsTrialDeck { get; set; }
|
|
}
|