namespace FictionArchive.Service.Shared.Contracts.Events; public interface IChapterPullRequested { Guid ImportId { get; } uint NovelId { get; } uint VolumeId { get; } uint ChapterOrder { get; } } public record ChapterPullRequested(Guid ImportId, uint NovelId, uint VolumeId, uint ChapterOrder) : IChapterPullRequested;