17 lines
415 B
C#
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|