feat: Initial commit
This commit is contained in:
16
Sources/SharedModels/CoolingCapacity.swift
Normal file
16
Sources/SharedModels/CoolingCapacity.swift
Normal file
@@ -0,0 +1,16 @@
|
||||
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 }
|
||||
}
|
||||
Reference in New Issue
Block a user