Bark/View/BaseTableViewCell.swift
2020-11-20 16:41:23 +08:00

17 lines
301 B
Swift

//
// BaseTableViewCell.swift
// Bark
//
// Created by huangfeng on 2020/11/20.
// Copyright © 2020 Fin. All rights reserved.
//
import UIKit
class BaseTableViewCell: UITableViewCell {
var viewModel:ViewModel?
func bindViewModel(model:ViewModel){
self.viewModel = model
}
}