feat: Initial commit
This commit is contained in:
12
Sources/Models/Core/AdjustmentMultiplier.swift
Normal file
12
Sources/Models/Core/AdjustmentMultiplier.swift
Normal file
@@ -0,0 +1,12 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user