using FictionArchive.Common.Enums;
using FictionArchive.Service.Shared.Services.EventBus;
namespace FictionArchive.Service.NovelService.Models.IntegrationEvents;
public class TranslationRequestCompletedEvent : IIntegrationEvent
{
///
/// Maps this event back to a triggering request.
///
public Guid? TranslationRequestId { get; set; }
///
/// The resulting text.
///
public string? TranslatedText { get; set; }
}