SDK_UnityMoney/Assets/Adjust/Scripts/AdjustPlayStorePurchase.cs

17 lines
415 B
C#
Raw Normal View History

2025-08-30 10:46:34 +00:00
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;
}
}
}