minesweeper_game/Library/PackageCache/com.unity.purchasing@649c6c7b3b1b/Runtime/Purchasing/Analytics/Models/AnalyticsTransactionReceipt.cs
2025-03-15 14:30:26 -04:00

15 lines
416 B
C#

#if IAP_ANALYTICS_SERVICE_ENABLED || IAP_ANALYTICS_SERVICE_ENABLED_WITH_SERVICE_COMPONENT
using System;
using Unity.Services.Analytics;
namespace UnityEngine.Purchasing
{
class AnalyticsTransactionReceipt
{
public string transactionReceipt { get; set; }
public string transactionReceiptSignature { get; set; }
public TransactionServer? transactionServer { get; set; }
}
}
#endif