2024-07-21 05:45:02 +02:00
|
|
|
|
namespace Wino.Domain.Enums
|
2024-04-18 01:44:37 +02:00
|
|
|
|
{
|
|
|
|
|
|
// From the SDK.
|
|
|
|
|
|
public enum StorePurchaseResult
|
|
|
|
|
|
{
|
|
|
|
|
|
//
|
|
|
|
|
|
// 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,
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|