feat: Begins adding climate zone client and location clients.

This commit is contained in:
2025-03-03 17:04:02 -05:00
parent 1727e9a905
commit 9da4149391
8 changed files with 158 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
/// Represents design temperature conditions.
public struct DesignTemperatures: Codable, Equatable, Sendable {
public let cooling: Double
public let heating: Double
public init(cooling: Double, heating: Double) {
self.cooling = cooling
self.heating = heating
}
}