7 lines
193 B
C#
7 lines
193 B
C#
namespace FictionArchive.Service.NovelService.Models.SourceAdapters;
|
|
|
|
public class ChapterFetchResult
|
|
{
|
|
public string Text { get; set; }
|
|
public List<ImageData> ImageData { get; set; }
|
|
} |