feat: Initial commit

This commit is contained in:
2025-03-12 16:59:10 -04:00
commit 5c684d0537
28 changed files with 1285 additions and 0 deletions

View 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
}