mirror of
https://github.com/hub-team/OnlineChatSdk-SwiftPM.git
synced 2026-04-14 16:53:52 +00:00
18 lines
289 B
Swift
18 lines
289 B
Swift
|
|
//
|
||
|
|
// 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
|
||
|
|
}
|
||
|
|
}
|