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

20 lines
479 B
C#
Raw Permalink Normal View History

2023-12-26 03:52:53 +00:00
using System;
using System.Collections.Generic;
namespace com.adjust.sdk
{
public class AdjustAppStorePurchase
{
internal string transactionId;
internal string productId;
internal string receipt;
public AdjustAppStorePurchase(string transactionId, string productId, string receipt)
{
this.transactionId = transactionId;
this.productId = productId;
this.receipt = receipt;
}
}
}