Files
Woka_Native_iOS/WOKA/SideBarNav/Model/FaqListDM.swift
BilalKhanWDI a5b33a3cfa - Fixed the issue of Presenting the view controller. So added it in navigation bar
- Handled the dismiss of jwplayer view controller
- Made sidebar navigation
- Worked on NAvigation for Live TV
- Prepared FAQ API
- Made FAQ View
- Customized the FAQ Cell
2024-06-03 20:02:39 +05:30

37 lines
852 B
Swift

//
// FaqListDM.swift
// WOKA
//
// Created by MacBook Pro on 03/06/24.
//
import Foundation
// MARK: - Welcome
struct FaqListDM: Codable {
let result: [ResultData]?
let totalRecords: Int?
enum CodingKeys: String, CodingKey {
case result
case totalRecords = "total_records"
}
// MARK: - Result
struct ResultData: Codable {
let id: Int?
let englishQuestion, englishAnswer, hindiQuestion, hindiAnswer: String?
let categoryMasterID: Int?
enum CodingKeys: String, CodingKey {
case id
case englishQuestion = "english_question"
case englishAnswer = "english_answer"
case hindiQuestion = "hindi_question"
case hindiAnswer = "hindi_answer"
case categoryMasterID = "category_master_id"
}
}
}