17 lines
413 B
C#
17 lines
413 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AdjustSdk
|
|
{
|
|
public class AdjustAppStorePurchase
|
|
{
|
|
public string TransactionId { get; private set; }
|
|
public string ProductId { get; private set; }
|
|
|
|
public AdjustAppStorePurchase(string transactionId, string productId)
|
|
{
|
|
this.TransactionId = transactionId;
|
|
this.ProductId = productId;
|
|
}
|
|
}
|
|
}
|