Files
pkurchatov 149b80a37f Sendable DivData
commit_hash:ae183ed8d06f2c89c8693f59bedba49752638377
2025-01-16 16:25:07 +03:00

57 lines
1.1 KiB
Swift

// Generated code. Do not modify.
import CommonCore
import Foundation
import Serialization
public final class EntityWithComplexProperty: Sendable {
public final class Property: Sendable {
public let value: Expression<URL>
public func resolveValue(_ resolver: ExpressionResolver) -> URL? {
resolver.resolveUrl(value)
}
init(
value: Expression<URL>
) {
self.value = value
}
}
public static let type: String = "entity_with_complex_property"
public let property: Property
init(
property: Property
) {
self.property = property
}
}
#if DEBUG
extension EntityWithComplexProperty: Equatable {
public static func ==(lhs: EntityWithComplexProperty, rhs: EntityWithComplexProperty) -> Bool {
guard
lhs.property == rhs.property
else {
return false
}
return true
}
}
#endif
#if DEBUG
extension EntityWithComplexProperty.Property: Equatable {
public static func ==(lhs: EntityWithComplexProperty.Property, rhs: EntityWithComplexProperty.Property) -> Bool {
guard
lhs.value == rhs.value
else {
return false
}
return true
}
}
#endif