25 lines
742 B
C#
25 lines
742 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; }
|
|
|
|
public const string FILE_NAME = "FileName";
|
|
|
|
//如果没有加string.Empty;那么前端会要求必须有值
|
|
public string? FileName { get; set; } = string.Empty;
|
|
}
|
|
}
|