From 38d34dad275cc90706f4daaadf401579b33737ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B5=D0=BD=D0=B8=D1=81=20=D0=90=D0=BD=D0=B4=D1=80?= =?UTF-8?q?=D0=B5=D0=B8=CC=86=D1=87=D1=83=D0=BA?= Date: Wed, 22 Jul 2020 16:13:19 +0300 Subject: [PATCH] Make `SubscriptionType` Hashable. --- Sources/SwiftyStoreKit/SwiftyStoreKit+Types.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/SwiftyStoreKit/SwiftyStoreKit+Types.swift b/Sources/SwiftyStoreKit/SwiftyStoreKit+Types.swift index 8eea5c9b..addf9b78 100644 --- a/Sources/SwiftyStoreKit/SwiftyStoreKit+Types.swift +++ b/Sources/SwiftyStoreKit/SwiftyStoreKit+Types.swift @@ -175,7 +175,7 @@ public enum VerifySubscriptionResult { case notPurchased } -public enum SubscriptionType { +public enum SubscriptionType: Hashable { case autoRenewable case nonRenewing(validDuration: TimeInterval) }