mirror of
https://github.com/Finb/Bark.git
synced 2025-12-08 21:36:01 +00:00
17 lines
310 B
Swift
17 lines
310 B
Swift
//
|
|
// BaseTableViewCell.swift
|
|
// Bark
|
|
//
|
|
// Created by huangfeng on 2020/11/20.
|
|
// Copyright © 2020 Fin. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class BaseTableViewCell<T>: UITableViewCell where T: ViewModel {
|
|
var viewModel: T?
|
|
func bindViewModel(model: T) {
|
|
self.viewModel = model
|
|
}
|
|
}
|