Files
FictionArchive/FictionArchive.Service.NovelService/Models/IntegrationEvents/ChapterPullRequestedEvent.cs
2025-12-29 20:27:04 -05:00

10 lines
311 B
C#

using FictionArchive.Service.Shared.Services.EventBus;
namespace FictionArchive.Service.NovelService.Models.IntegrationEvents;
public class ChapterPullRequestedEvent : IIntegrationEvent
{
public uint NovelId { get; set; }
public uint VolumeId { get; set; }
public uint ChapterOrder { get; set; }
}