8 lines
232 B
C#
8 lines
232 B
C#
using FictionArchive.Service.Shared.Services.EventBus;
|
|
|
|
namespace FictionArchive.Service.NovelService.Models.IntegrationEvents;
|
|
|
|
public class NovelUpdateRequestedEvent : IIntegrationEvent
|
|
{
|
|
public string NovelUrl { get; set; }
|
|
} |