SquareDash/Library/PackageCache/com.unity.purchasing@4.10.0/Runtime/SecurityCore/IPurchaseReceipt.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

26 lines
578 B
C#

using System;
namespace UnityEngine.Purchasing.Security
{
/// <summary>
/// Represents a parsed purchase receipt from a store.
/// </summary>
public interface IPurchaseReceipt
{
/// <summary>
/// The ID of the transaction.
/// </summary>
string transactionID { get; }
/// <summary>
/// The ID of the product purchased.
/// </summary>
string productID { get; }
/// <summary>
/// The date fof the purchase.
/// </summary>
DateTime purchaseDate { get; }
}
}