mirror of
https://github.com/Finb/Bark.git
synced 2025-12-08 21:36:01 +00:00
17 lines
301 B
Swift
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
|
|
}
|
|
}
|