From 35d3a7cdf79143e56eddba0eedb8d31e6a41a4b6 Mon Sep 17 00:00:00 2001 From: Sumanth Nadigadda Date: Mon, 27 May 2024 15:03:29 +0530 Subject: [PATCH] Renaming file. --- VDS/Components/Table/TableCellModel.swift | 24 ----------------------- 1 file changed, 24 deletions(-) delete mode 100644 VDS/Components/Table/TableCellModel.swift diff --git a/VDS/Components/Table/TableCellModel.swift b/VDS/Components/Table/TableCellModel.swift deleted file mode 100644 index 01f03515..00000000 --- a/VDS/Components/Table/TableCellModel.swift +++ /dev/null @@ -1,24 +0,0 @@ -// -// TableCellModel.swift -// VDS -// -// Created by Nadigadda, Sumanth on 02/05/24. -// - -import Foundation -import UIKit -import VDSTokens - -/// Model that represent the content of each cell of Table component -public struct TableItemModel { - - public var bottomLine: Line.Style? - - /// Component to be show in the Table cell - public var component: UIView - - public init(bottomLine: Line.Style? = nil, component: UIView) { - self.bottomLine = bottomLine - self.component = component - } -}