Defined the CellIdentifiable protocol in the UI library.

This commit is contained in:
Javier Cicchelli 2024-03-21 00:17:43 +01:00
parent d05f198471
commit 3632de9518

View File

@ -0,0 +1,16 @@
//
// CellIdentifiable.swift
// ReviewsUIKit
//
// Created by Javier Cicchelli on 21/03/2024.
// Copyright © 2024 Röck+Cöde VoF. All rights reserved.
//
import UIKit
public protocol CellIdentifiable: UITableViewCell {
// MARK: Properties
static var cellID: String { get }
}