Files

8 lines
224 B
C#
Raw Permalink Normal View History

2026-06-15 11:34:31 +08:00
namespace AppsFlyerSDK
{
public interface IAppsFlyerPurchaseValidation
{
void didReceivePurchaseRevenueValidationInfo(string validationInfo);
void didReceivePurchaseRevenueError(string error);
}
}