vds_ios/VDS/Components/DropdownSelect/DropdownOptionModel.swift
Matt Bruce 8311de5409 added value in case there is a difference
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2024-04-09 15:38:10 -05:00

23 lines
466 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 var value: String
public init(text: String, value: String? = nil) {
self.text = text
self.value = value ?? text
}
}
}