17 lines
335 B
Swift
17 lines
335 B
Swift
import Foundation
|
|
|
|
public enum CoolingCapacity: Double, Equatable, CaseIterable {
|
|
case half = 0.5
|
|
case threeQuarter = 0.75
|
|
case one = 1
|
|
case oneAndAHalf = 1.5
|
|
case two = 2
|
|
case twoAndAHalf = 2.5
|
|
case three = 3
|
|
case threeAndAHalf = 3.5
|
|
case four = 4
|
|
case five = 5
|
|
|
|
public static var `default`: Self { .three }
|
|
}
|