Skip to content

Commit

Permalink
Done revert
Browse files Browse the repository at this point in the history
  • Loading branch information
gmaceira committed Jul 10, 2023
1 parent 31f345a commit 55cd83d
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ public class MLBusinessLoyaltyBroadcastData: NSObject {
public let percentage: Float
public let primaryColor: String

public init(level: Int?, percentage: Float?, primaryColor: String?) {
self.level = level ?? 1
self.percentage = percentage ?? 0.0
self.primaryColor = primaryColor ?? "#FFFFFF"
public init(level: Int, percentage: Float, primaryColor: String) {
self.level = level
self.percentage = percentage
self.primaryColor = primaryColor
}

}

0 comments on commit 55cd83d

Please sign in to comment.