Files
FictionArchive/FictionArchive.Service.NovelService/Contracts/ChapterPullRequested.cs

9 lines
234 B
C#

using FictionArchive.Service.Shared.Contracts.Events;
namespace FictionArchive.Service.NovelService.Contracts;
public record ChapterPullRequested(
uint NovelId,
uint VolumeId,
uint ChapterOrder) : IChapterPullRequested;