Implemented the Review model in the Feed library.

This commit is contained in:
Javier Cicchelli 2024-03-17 16:08:18 +01:00
parent 6245e87a98
commit 7a7df4cfea

View File

@ -0,0 +1,41 @@
//
// Review.swift
// ReviewsFeedKit
//
// Created by Javier Cicchelli on 17/03/2024.
// Copyright © 2024 Röck+Cöde VoF. All rights reserved.
//
import Foundation
public struct Review {
// MARK: Constants
public let author: String
public let content: String
public let id: Int
public let rating: Int
public let title: String
public let updated: Date
public let version: String
// MARK: Initialisers
public init(
id: Int,
author: String,
title: String,
content: String,
rating: Int,
version: String,
updated: Date
) {
self.author = author
self.content = content
self.id = id
self.rating = rating
self.title = title
self.updated = updated
self.version = version
}
}