IceCubesApp/Packages/Models/Sources/Models/Stream/StreamMessage.swift

12 lines
213 B
Swift
Raw Normal View History

import Foundation
public struct StreamMessage: Encodable {
public let type: String
public let stream: String
2023-01-17 10:36:01 +00:00
public init(type: String, stream: String) {
self.type = type
self.stream = stream
}
}