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