This PR contains the work done to implement the `FeedItemViewController` view controller, that shows in details a selected review from the `FeedListViewController` view controller. Reviewed-on: #10 Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
17 lines
262 B
Swift
17 lines
262 B
Swift
//
|
|
// Int+Constants.swift
|
|
// ReviewsFeed
|
|
//
|
|
// Created by Javier Cicchelli on 19/03/2024.
|
|
// Copyright © 2024 Röck+Cöde. All rights reserved.
|
|
//
|
|
|
|
extension Int {
|
|
|
|
// MARK: Constants
|
|
enum Rating {
|
|
static let total: Int = 5
|
|
}
|
|
|
|
}
|