2025-02-16 11:54:23 +01:00
|
|
|
|
namespace Wino.Core.Domain.Enums;
|
|
|
|
|
|
|
|
|
|
|
|
// From the SDK.
|
|
|
|
|
|
public enum StorePurchaseResult
|
2024-04-18 01:44:37 +02:00
|
|
|
|
{
|
2025-02-16 11:54:23 +01:00
|
|
|
|
//
|
|
|
|
|
|
// Summary:
|
|
|
|
|
|
// The purchase request succeeded.
|
|
|
|
|
|
Succeeded,
|
|
|
|
|
|
//
|
|
|
|
|
|
// Summary:
|
|
|
|
|
|
// The current user has already purchased the specified app or add-on.
|
|
|
|
|
|
AlreadyPurchased,
|
|
|
|
|
|
//
|
|
|
|
|
|
// Summary:
|
|
|
|
|
|
// The purchase request did not succeed.
|
|
|
|
|
|
NotPurchased,
|
2024-04-18 01:44:37 +02:00
|
|
|
|
}
|