This commit is contained in:
Pfeil, Scott Robert 2020-03-17 09:35:14 -04:00
parent 883f2385b9
commit ddfeb9cd35

View File

@ -0,0 +1,14 @@
//
// FormHolderModelProtocol.swift
// MVMCoreUI
//
// Created by Suresh, Kamlesh on 2/5/20.
// Copyright © 2020 Verizon Wireless. All rights reserved.
//
// A protocol for the model of the delegate object that holds the form validator. The rules are stored in the model.
import Foundation
public protocol FormHolderModelProtocol {
var formRules: [FormGroupRule]? { get set }
}