15 lines
361 B
Swift
15 lines
361 B
Swift
//
|
|
// MVMControllerModelProtocol.swift
|
|
// MVMCoreUI
|
|
//
|
|
// Created by Scott Pfeil on 3/16/20.
|
|
// Copyright © 2020 Verizon Wireless. All rights reserved.
|
|
//
|
|
// A convenience aggregate for common MVM templates.
|
|
|
|
import Foundation
|
|
|
|
public protocol MVMControllerModelProtocol: TemplateModelProtocol, FormHolderModelProtocol, PageBehaviorsTemplateProtocol {
|
|
|
|
}
|