9 lines
234 B
C#
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;
|