public void addChapter(int chapterNum, string timeStart, string timeEnd, string suid = null, string chapterInfo = null) { ChapterAtom chapter = new ChapterAtom(); chapter.chapterNum = chapterNum; chapter.timeStart = timeStart; chapter.timeEnd = timeEnd; chapter.suid = suid; chapter.chapterInfo = chapterInfo; chapterAtom.Add(chapter); }