20 lines
408 B
Swift
20 lines
408 B
Swift
//
|
|
// BundleInformation.swift
|
|
// SwiftKit
|
|
//
|
|
// Created by Daniel Saidi on 2020-06-09.
|
|
// Copyright © 2020 Daniel Saidi. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
/**
|
|
This protocol can be implemented by any struct and/or class
|
|
that can provide information about the current bundle.
|
|
*/
|
|
public protocol BundleInformation {
|
|
|
|
var buildNumber: String { get }
|
|
var versionNumber: String { get }
|
|
}
|