ChoiceModel.swift 528 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // ChoiceModel.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 15/09/21.
  6. //
  7. import Foundation
  8. import RealmSwift
  9. class ChoiceModel: Object {
  10. @objc dynamic var id = 0
  11. @objc dynamic var content = ""
  12. @objc dynamic var questionId = 0
  13. override static func primaryKey() -> String? {
  14. return "id"
  15. }
  16. convenience init(id:Int, content:String, questionId:Int) {
  17. self.init()
  18. self.id = id
  19. self.content = content
  20. self.questionId = questionId
  21. }
  22. }