feat: Begins manual d core models.

This commit is contained in:
2025-12-18 21:36:46 -05:00
parent 5d6e50a983
commit 25736638eb
5 changed files with 74 additions and 20 deletions

View File

@@ -0,0 +1,17 @@
import Foundation
public struct EquipmentInfo: Codable, Equatable {
public let staticPressure: Double
public let heatingCFM: Int
public let coolingCFM: Int
public init(
staticPressure: Double = 0.5,
heatingCFM: Int,
coolingCFM: Int
) {
self.staticPressure = staticPressure
self.heatingCFM = heatingCFM
self.coolingCFM = coolingCFM
}
}