using RecNet.Application.Common.PlatformAuth; using RecNet.Domain.Common; namespace RecNet.Application.Common.Interfaces; public interface IPlatformAuthValidator { PlatformType PlatformType { get; } Task ValidateAsync( string platformAuthentication, string platformId, CancellationToken ct = default); }