8 lines
185 B
C#
8 lines
185 B
C#
namespace FictionArchive.Service.Shared.Contracts.Events;
|
|
|
|
public interface ITranslationRequestCompleted
|
|
{
|
|
Guid? TranslationRequestId { get; }
|
|
string? TranslatedText { get; }
|
|
}
|