OfferModel.swift
554 Bytes
//
// OfferModel.swift
// SwiftWarplyFramework
//
// Created by Warply on 10/06/2025.
// Copyright © 2025 Warply. All rights reserved.
//
import Foundation
struct OfferModel {
let category: String
let title: String
let description: String
let discount: String
let discountType: String // e.g., "price", "percentage", "free", "buyOneGetOne", etc.
let bannerImage: String
let merchantLogo: String
let expirationDate: String
let color: UInt
var isFavorite: Bool
var active: Bool?
var redeemed: Bool?
}