feat: Initial commit

This commit is contained in:
2024-05-24 16:44:41 -04:00
commit c1741de3f9
19 changed files with 1560 additions and 0 deletions

View 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 }
}