Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
capitalize enums
Browse files Browse the repository at this point in the history
  • Loading branch information
flanagankp committed Nov 15, 2023
1 parent 8c7edeb commit 3f89147
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Sources/Passage/PassageModels.swift
Original file line number Diff line number Diff line change
Expand Up @@ -207,10 +207,10 @@ public struct EmailAndSMSAuthMethod: Codable, Equatable {
internal let ttlDisplayUnitString: String

public enum DisplayUnit: String {
case seconds = "s"
case minutes = "m"
case hours = "h"
case days = "d"
case Seconds = "s"
case Minutes = "m"
case Hours = "h"
case Days = "d"
}

public var ttlDisplayUnit: DisplayUnit? {
Expand Down

0 comments on commit 3f89147

Please sign in to comment.