Public Access
12 lines
329 B
C#
12 lines
329 B
C#
namespace MeetingAssistant.Speakers;
|
|
|
|
public sealed class NoopSpeakerIdentityMatcher : ISpeakerIdentityMatcher
|
|
{
|
|
public Task<SpeakerIdentityMatch?> MatchAsync(
|
|
SpeakerIdentityMatchRequest request,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
return Task.FromResult<SpeakerIdentityMatch?>(null);
|
|
}
|
|
}
|