21 lines
372 B
Swift
21 lines
372 B
Swift
//
|
|
// DropdownOptionModel.swift
|
|
// VDS
|
|
//
|
|
// Created by Kanamarlapudi, Vasavi on 03/04/24.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension DropdownSelect {
|
|
public struct DropdownOptionModel {
|
|
|
|
/// Text that goes as option to DropdownSelect
|
|
public var text: String
|
|
|
|
public init(text: String) {
|
|
self.text = text
|
|
}
|
|
}
|
|
}
|