13 lines
454 B
C#
13 lines
454 B
C#
using FictionArchive.Common.Enums;
|
|
using FictionArchive.Service.Shared.Services.EventBus;
|
|
|
|
namespace FictionArchive.Service.TranslationService.Models.IntegrationEvents;
|
|
|
|
public class TranslationRequestCreatedEvent : IIntegrationEvent
|
|
{
|
|
public Guid TranslationRequestId { get; set; }
|
|
public Language From { get; set; }
|
|
public Language To { get; set; }
|
|
public string Body { get; set; }
|
|
public string TranslationEngineKey { get; set; }
|
|
} |