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