This PR contains the work done to show the top 3 words belonging to the filtered reviews in the `FeedListViewController` view controller. Reviewed-on: #12 Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
17 lines
272 B
Swift
17 lines
272 B
Swift
//
|
|
// TopWord.swift
|
|
// ReviewsFeed
|
|
//
|
|
// Created by Javier Cicchelli on 21/03/2024.
|
|
// Copyright © 2024 Röck+Cöde. All rights reserved.
|
|
//
|
|
|
|
struct TopWord: Identifiable {
|
|
|
|
// MARK: Constants
|
|
let id: String
|
|
let term: String
|
|
let count: Int
|
|
|
|
}
|