21 lines
392 B
Swift
21 lines
392 B
Swift
//
|
|
// CryptoChatViewChatsHeader.swift
|
|
// Wallet
|
|
//
|
|
// Created by Saveliy Stavitsky on 8/18/20.
|
|
// Copyright © 2020 List. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class CryptoChatViewChatsHeader: CommonViewCustom {
|
|
|
|
@IBOutlet var searchTextField: CommonTextFieldSearch!
|
|
|
|
weak var parent: CryptoChatControllerChats?
|
|
|
|
override func setup() {
|
|
super.setup()
|
|
}
|
|
}
|