13 lines
184 B
Swift
13 lines
184 B
Swift
//
|
|
// TableCellModel.swift
|
|
// VDS
|
|
//
|
|
// Created by Nadigadda, Sumanth on 02/05/24.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol TableCellModel {
|
|
var defaultHeight: CGFloat { get }
|
|
}
|