- Finalised Listing of CartList - Added pull to refresh and swipe to delete - Handled manual delete on icon click - Made CouponCart listing view controller - Added api to fetch the coupons - Added api to apply coupon with model - Made a coupon discount stack , will show up
64 lines
1.7 KiB
Swift
64 lines
1.7 KiB
Swift
//
|
|
// CellIdentifier.swift
|
|
// WOKA
|
|
//
|
|
// Created by Bilal on 26/04/2024.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension K{
|
|
|
|
struct CellIdentifier{
|
|
|
|
struct OnBoarding{
|
|
static let onBoardCell = "OnBoardCell"
|
|
|
|
//
|
|
}
|
|
|
|
struct Authentication{
|
|
static let yourIntrestCell = "YourIntrestCell"
|
|
static let selectAvatarCell = "SelectAvatarCell"
|
|
static let linkedChildCell = "LinkedChildCell"
|
|
}
|
|
|
|
struct Theme{
|
|
static let homeExploreCell = "HomeExploreCell"
|
|
}
|
|
|
|
struct SideBarNav{
|
|
static let faqCell = "FaqCell"
|
|
}
|
|
|
|
struct Home{
|
|
static let blogsCell = "BlogsCell"
|
|
static let songListCell = "SongListCell"
|
|
static let userNotificationCell = "UserNotificationCell"
|
|
static let favouriteCell = "FavouriteCell"
|
|
}
|
|
|
|
struct WebSeries{
|
|
static let webSeriesCell = "WebSeriesCell"
|
|
static let webSeriesShowListingCell = "WebSeriesShowListingCell"
|
|
static let seasonCategoryCell = "SeasonCategoryCell"
|
|
static let webSeriesEpisodeCell = "WebSeriesEpisodeCell"
|
|
}
|
|
|
|
struct AudioBooks{
|
|
static let continueAudioCell = "ContinueAudioCell"
|
|
}
|
|
|
|
struct Shop{
|
|
static let shopListingCell = "ShopListingCell"
|
|
static let shopProductsCell = "ShopProductsCell"
|
|
}
|
|
|
|
struct Cart{
|
|
static let cartListCell = "CartListCell"
|
|
static let cartPaymentOptionsCell = "CartPaymentOptionsCell"
|
|
static let couponCell = "CouponCell"
|
|
}
|
|
}
|
|
}
|