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
|
|
|
|
}
|