Skip to content

Commit

Permalink
Fix V2Response result optional
Browse files Browse the repository at this point in the history
  • Loading branch information
isaced committed Aug 10, 2022
1 parent 3f0701c commit bcc3ade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/V2exAPI/Models/V2Response.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ import Foundation
public struct V2Response<T: Decodable>: Decodable {
public let success: Bool
public let message: String?
public let result: T?
public let result: T
}

0 comments on commit bcc3ade

Please sign in to comment.