12 lines
281 B
Swift
12 lines
281 B
Swift
/// 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
|
|
}
|
|
}
|