9 lines
278 B
C#
9 lines
278 B
C#
namespace FictionArchive.Service.Shared.MassTransit.Contracts.Commands;
|
|
|
|
public record PullChapterContentCommand : ICommand
|
|
{
|
|
public required uint NovelId { get; init; }
|
|
public required uint VolumeId { get; init; }
|
|
public required uint ChapterOrder { get; init; }
|
|
}
|