using FictionArchive.Common.Enums; using FictionArchive.Service.Shared.Services.EventBus; using FictionArchive.Service.TranslationService.Models.Enums; namespace FictionArchive.Service.TranslationService.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; } }