11 lines
297 B
C#
11 lines
297 B
C#
namespace FictionArchive.Service.Shared.Contracts.Events;
|
|
|
|
public interface IChapterPullCompleted
|
|
{
|
|
Guid ImportId { get; }
|
|
uint ChapterId { get; }
|
|
int ImagesQueued { get; }
|
|
}
|
|
|
|
public record ChapterPullCompleted(Guid ImportId, uint ChapterId, int ImagesQueued) : IChapterPullCompleted;
|