14 lines
273 B
Swift
14 lines
273 B
Swift
//
|
|
// PagingMoleculeProtocol.swift
|
|
// MVMCoreUI
|
|
//
|
|
// Created by Suresh, Kamlesh on 11/25/19.
|
|
// Copyright © 2019 Verizon Wireless. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol PagingMoleculeProtocol: MoleculeProtocol {
|
|
var position: Float? {get}
|
|
}
|