9 lines
244 B
C#
9 lines
244 B
C#
using Treestar.Shared.Models.DBDomain;
|
|
|
|
namespace Treestar.Shared.Models.DTO.Responses;
|
|
|
|
public class ScrapeNovelsResponse
|
|
{
|
|
public List<Novel> SuccessfulNovels { get; set; }
|
|
public Dictionary<string, Exception> Failures { get; set; }
|
|
} |