SDK_UnityMoney/Assets/Adjust/Scripts/AdjustPlayStorePurchase.cs

17 lines
415 B
C#

using System.Collections.Generic;
namespace AdjustSdk
{
public class AdjustPlayStorePurchase
{
public string ProductId { get; private set; }
public string PurchaseToken { get; private set; }
public AdjustPlayStorePurchase(string productId, string purchaseToken)
{
this.ProductId = productId;
this.PurchaseToken = purchaseToken;
}
}
}