From 3632de9518eafaba2c5cb0f4f13590b86b1cd15d Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Thu, 21 Mar 2024 00:17:43 +0100 Subject: [PATCH] Defined the CellIdentifiable protocol in the UI library. --- .../Kit/Sources/Protocols/CellIdentifiable.swift | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Libraries/UI/Kit/Sources/Protocols/CellIdentifiable.swift diff --git a/Libraries/UI/Kit/Sources/Protocols/CellIdentifiable.swift b/Libraries/UI/Kit/Sources/Protocols/CellIdentifiable.swift new file mode 100644 index 0000000..d44056b --- /dev/null +++ b/Libraries/UI/Kit/Sources/Protocols/CellIdentifiable.swift @@ -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 } + +}