Welcome to mirror list, hosted at ThFree Co, Russian Federation.

UGCReview.swift « UGC « Content « PlacePageLayout « PlacePage « UI « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f0bf756d2e5a61e2eeb7e0758698db4ed3e15caa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@objc(MWMUGCReview)
final class UGCReview: NSObject, MWMReviewProtocol {
  let title: String
  let date: String
  let text: String
  let rating: UGCRatingValueType

  @objc init(title: String, date: String, text: String, rating: UGCRatingValueType) {
    self.title = title
    self.date = date
    self.text = text
    self.rating = rating
  }
}