15 lines
188 B
Swift
15 lines
188 B
Swift
//
|
|
// CarouselData.swift
|
|
// WOKA
|
|
//
|
|
// Created by Bilal on 26/04/2024.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct CarouselData{
|
|
let title : String
|
|
let desc : String
|
|
let image : String
|
|
}
|