QuestionModel.swift 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //
  2. // QuestionModel.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 15/09/21.
  6. //
  7. import Foundation
  8. import RealmSwift
  9. class QuestionModel: Object {
  10. @objc dynamic var id = 0
  11. @objc dynamic var dateCreated = ""
  12. @objc dynamic var lastUpdated = ""
  13. @objc dynamic var content = ""
  14. @objc dynamic var questionBankId = 0
  15. @objc dynamic var answerId = 0
  16. var choices = List<Choices>()
  17. override static func primaryKey() -> String? {
  18. return "id"
  19. }
  20. convenience init(id:Int, dateCreated:String, lastUpdated:String, content:String, questionBankId:Int, answerId:Int, choices:List<Choices>) {
  21. self.init()
  22. self.id = id
  23. self.dateCreated = dateCreated
  24. self.lastUpdated = lastUpdated
  25. self.content = content
  26. self.questionBankId = questionBankId
  27. self.answerId = answerId
  28. self.choices = choices
  29. }
  30. }
  31. class Choices: Object {
  32. @objc dynamic var id = 0
  33. override static func primaryKey() -> String? {
  34. return "id"
  35. }
  36. convenience init(id:Int) {
  37. self.init()
  38. self.id = id
  39. }
  40. }