[M] move Applovin.Max & Appsflyer to Assets

This commit is contained in:
2024-08-08 17:54:20 +08:00
parent 4343d67794
commit e058996e29
164 changed files with 668 additions and 3604 deletions

View File

@@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
namespace AppsFlyerSDK
{
/// <summary>
//
/// </summary>
public class AFSDKPurchaseDetailsIOS
{
public string productId { get; private set; }
public string price { get; private set; }
public string currency { get; private set; }
public string transactionId { get; private set; }
private AFSDKPurchaseDetailsIOS(string productId, string price, string currency, string transactionId)
{
this.productId = productId;
this.price = price;
this.currency = currency;
this.transactionId = transactionId;
}
public static AFSDKPurchaseDetailsIOS Init(string productId, string price, string currency, string transactionId)
{
return new AFSDKPurchaseDetailsIOS(productId, price, currency, transactionId);
}
}
}