14 lines
361 B
C#
14 lines
361 B
C#
using RecNet.Application.Common.PlatformAuth;
|
|
using RecNet.Domain.Common;
|
|
|
|
namespace RecNet.Application.Common.Interfaces;
|
|
|
|
public interface IPlatformAuthValidator
|
|
{
|
|
PlatformType PlatformType { get; }
|
|
|
|
Task<PlatformAuthResult> ValidateAsync(
|
|
string platformAuthentication,
|
|
string platformId,
|
|
CancellationToken ct = default);
|
|
} |