Files
Woka_Native_iOS/WOKA/Theme/Model/UserNotificationDM.swift
BilalKhanWDI 3754a7f75b - Fixed the blog image issue for fit.
- Finalised more module.
- Made UI for notifications
- Made notification cells
- Added pull to refresh
- Worked on logic for Favourites.
- Getting the logic data, then separating the hindi web series
- Added collection for Webseries hindi , English , Audio book, karaoke, games
- MAde the data model for favourites
2024-06-13 19:54:44 +05:30

28 lines
595 B
Swift

//
// UserNotificationDM.swift
// WOKA
//
// Created by MacBook Pro on 13/06/24.
//
import Foundation
// MARK: - UserNotificationDM
struct UserNotificationDM: Codable {
let id, userID, postType: Int?
let title, type, description, createdAt: String?
let image: String?
let link: String?
let isRead: Int?
enum CodingKeys: String, CodingKey {
case id
case userID = "user_id"
case postType = "post_type"
case title, type, description
case createdAt = "created_at"
case image, link
case isRead = "is_read"
}
}