Files
Woka_Native_iOS/WOKA/Constants K/CellIdentifier.swift
2024-08-08 18:47:13 +05:30

69 lines
2.0 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"
static let myOrderCell = "MyOrderCell"
static let myOrderDetailsCell = "MyOrderDetailsCell"
}
struct Home{
static let blogsCell = "BlogsCell"
static let songListCell = "SongListCell"
static let userNotificationCell = "UserNotificationCell"
static let favouriteCell = "FavouriteCell"
static let myListViewAllCell = "MyListViewAllCell"
}
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"
static let shopProductImageCell = "ShopProductImageCell"
}
struct Cart{
static let cartListCell = "CartListCell"
static let cartPaymentOptionsCell = "CartPaymentOptionsCell"
static let couponCell = "CouponCell"
static let addressCell = "AddressCell"
}
}
}