16 lines
340 B
Swift
16 lines
340 B
Swift
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
|
|
}
|