Files
OnlineChatSdk-SwiftPM/OnlineChatSdk/Classes/Command.swift

18 lines
289 B
Swift
Raw Normal View History

2019-11-20 01:13:59 +07:00
//
// Command.swift
// OnlineChatSdk
//
// Created by Andrew Blinov on 26/03/2019.
// Copyright © 2019 Andrew Blinov. All rights reserved.
//
import Foundation
public struct Command {
let command: String
init(_ command: String) {
self.command = command
}
}