9 lines
136 B
Swift
9 lines
136 B
Swift
|
|
public struct TemperatureSensor: Equatable {
|
|
public var topic: String
|
|
|
|
public init(topic: String) {
|
|
self.topic = topic
|
|
}
|
|
}
|