13 lines
378 B
Swift
13 lines
378 B
Swift
public struct AdjustmentMultiplier: Codable, Equatable, Sendable {
|
|
|
|
public let coolingTotal: Double?
|
|
public let coolingSensible: Double?
|
|
public let heating: Double
|
|
|
|
public init(coolingTotal: Double? = nil, coolingSensible: Double? = nil, heating: Double) {
|
|
self.coolingTotal = coolingTotal
|
|
self.coolingSensible = coolingSensible
|
|
self.heating = heating
|
|
}
|
|
}
|