16 lines
495 B
Swift
16 lines
495 B
Swift
//
|
|
// ClientParameterBiometricsEnabledModel.swift
|
|
// MobileFirstFramework
|
|
//
|
|
// Created by Arun Kumar Chintakrinda on 06/05/24.
|
|
// Copyright © 2024 Verizon Wireless. All rights reserved.
|
|
//
|
|
|
|
import MVMCore
|
|
|
|
public struct ClientParameterBiometricsEnabledModel: ClientParameterModelProtocol {
|
|
public static var identifier: String = "biometricsEnabled"
|
|
public var type: String = ClientParameterBiometricsEnabledModel.identifier
|
|
@DecodableDefault.UUIDString public var id: String
|
|
}
|