com.guru.unity.adjust/Adjust/Unity/AdjustPlayStorePurchase.cs

18 lines
396 B
C#

using System;
using System.Collections.Generic;
namespace com.adjust.sdk
{
public class AdjustPlayStorePurchase
{
internal string productId;
internal string purchaseToken;
public AdjustPlayStorePurchase(string productId, string purchaseToken)
{
this.productId = productId;
this.purchaseToken = purchaseToken;
}
}
}