feat: Initial commit
This commit is contained in:
15
Sources/Models/Derating.swift
Normal file
15
Sources/Models/Derating.swift
Normal file
@@ -0,0 +1,15 @@
|
||||
public enum Derating {
|
||||
|
||||
public struct Request: Codable, Equatable, Sendable {
|
||||
|
||||
public let elevation: Int
|
||||
public let systemType: SystemType
|
||||
|
||||
public init(elevation: Int, systemType: SystemType) {
|
||||
self.elevation = elevation
|
||||
self.systemType = systemType
|
||||
}
|
||||
}
|
||||
|
||||
public typealias Response = AdjustmentMultiplier
|
||||
}
|
||||
Reference in New Issue
Block a user