32 lines
472 B
Swift
Raw Normal View History

2020-07-21 12:29:54 +02:00
//
// Review.swift
// ReviewsFeed
2020-07-21 12:29:54 +02:00
//
// Created by Dmitrii Ivanov on 21/07/2020.
// Copyright © 2020 ING. All rights reserved.
//
import Foundation
struct Review {
// MARK: Constants
2020-07-21 12:29:54 +02:00
let author: String
let comment: String
let id: Int
let rating: Rating
2020-07-21 12:29:54 +02:00
let title: String
}
// MARK: - Structs
extension Review {
struct Rating {
// MARK: Constants
let stars: Int
let appVersion: String
2020-07-21 12:29:54 +02:00
}
}