20 lines
554 B
C#
20 lines
554 B
C#
using CloudBuilder.AI.Entity;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CloudBuilder.AI.Data
|
|
{
|
|
public class AiBookData
|
|
{
|
|
public AiBookData() { }
|
|
public AiBookEntity AiBook { get; set; }
|
|
public AiChapterEntity[]? AiChapters { get; set; }
|
|
public AiBookPersonEntity[]? AiBookPersons { get; set; }
|
|
public AiParagraphEntity[]? AiParagraphs { get; set; }
|
|
public AiSentenceEntity[]? AiSentences { get; set; }
|
|
}
|
|
}
|