浏览代码

Make `SubscriptionType` Hashable.

Денис Андрейчук 5 年之前
父节点
当前提交
38d34dad27
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Sources/SwiftyStoreKit/SwiftyStoreKit+Types.swift

+ 1 - 1
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)
 }