feat: Begins adding climate zone client and location clients.
This commit is contained in:
11
Sources/CoreModels/DesignTemperatures.swift
Normal file
11
Sources/CoreModels/DesignTemperatures.swift
Normal 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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user