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