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

18 lines
396 B
C#
Raw Normal View History

2023-12-26 03:52:53 +00:00
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;
}
}
}