IceCubesApp/Packages/Models/Sources/Models/Stream/StreamMessage.swift
2022-12-25 12:46:42 +01:00

13 lines
218 B
Swift

import Foundation
public struct StreamMessage: Encodable {
public let type: String
public let stream: String
public init(type: String, stream: String) {
self.type = type
self.stream = stream
}
}