WIP: Working on friction rate worksheet views.

This commit is contained in:
2025-12-31 21:56:43 -05:00
parent 591875cf13
commit 24c87602e9
12 changed files with 326 additions and 11 deletions

View File

@@ -1,3 +1,4 @@
import Dependencies
import Foundation
public struct EquipmentInfo: Codable, Equatable, Identifiable, Sendable {
@@ -50,3 +51,16 @@ extension EquipmentInfo {
}
}
}
#if DEBUG
extension EquipmentInfo {
public static let mock = Self(
id: UUID(0),
projectID: UUID(0),
heatingCFM: 1000,
coolingCFM: 1000,
createdAt: Date(),
updatedAt: Date()
)
}
#endif