using FictionArchive.Service.Shared.Contracts.Events; namespace FictionArchive.Service.NovelService.Contracts; public record ChapterCreated( uint ChapterId, uint NovelId, uint VolumeId, uint VolumeOrder, uint ChapterOrder, string ChapterTitle) : IChapterCreated;