forked from mirrors/linphone-iphone
20 lines
311 B
Swift
20 lines
311 B
Swift
//
|
|
// ChatConversationViewModelSwift.swift
|
|
// linphone
|
|
//
|
|
// Created by Benoît Martins on 23/11/2022.
|
|
//
|
|
|
|
import UIKit
|
|
import Foundation
|
|
import linphonesw
|
|
|
|
|
|
class ChatConversationViewModel: ControlsViewModel {
|
|
|
|
static let sharedModel = ChatConversationViewModel()
|
|
|
|
override init() {
|
|
super.init()
|
|
}
|
|
}
|