22 lines
347 B
Swift
22 lines
347 B
Swift
//
|
|
// TableRowModel.swift
|
|
// VDS
|
|
//
|
|
// Created by Sumanth Nadigadda on 27/05/24.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public struct TableRowModel {
|
|
|
|
public var columns: [TableItemModel]
|
|
|
|
public var columnsCount: Int {
|
|
return columns.count
|
|
}
|
|
|
|
public init(columns: [TableItemModel]) {
|
|
self.columns = columns
|
|
}
|
|
}
|