Files
TenWholeYears.Server/src/RecNet.Application/Common/Interfaces/IPlatformAuthValidator.cs
2026-06-19 22:52:38 -05:00

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