9 lines
272 B
C#
9 lines
272 B
C#
using FictionArchive.Service.Shared.Services.EventBus;
|
|
|
|
namespace FictionArchive.Service.NovelService.Models.IntegrationEvents;
|
|
|
|
public class ChapterPullRequestedEvent : IntegrationEvent
|
|
{
|
|
public uint NovelId { get; set; }
|
|
public uint ChapterNumber { get; set; }
|
|
} |