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; } }