13 lines
300 B
C#
13 lines
300 B
C#
using FictionArchive.Common.Enums;
|
|
|
|
namespace FictionArchive.Service.Shared.Contracts.Events;
|
|
|
|
public interface ITranslationRequestCreated
|
|
{
|
|
Guid TranslationRequestId { get; }
|
|
Language From { get; }
|
|
Language To { get; }
|
|
string Body { get; }
|
|
string TranslationEngineKey { get; }
|
|
}
|