13 lines
399 B
C#
13 lines
399 B
C#
using FictionArchive.Common.Enums;
|
|
|
|
namespace FictionArchive.Service.Shared.MassTransit.Contracts.Commands;
|
|
|
|
public record TranslateTextCommand : ICommand
|
|
{
|
|
public Guid TranslationRequestId { get; init; }
|
|
public Language From { get; init; }
|
|
public Language To { get; init; }
|
|
public required string Body { get; init; }
|
|
public required string TranslationEngineKey { get; init; }
|
|
}
|