mirror of
https://github.com/mas-cli/mas
synced 2024-12-27 12:23:08 +00:00
5be95132e9
for easy dependency injection
14 lines
374 B
Swift
14 lines
374 B
Swift
//
|
|
// SoftwareProduct.swift
|
|
// MasKit
|
|
//
|
|
// Created by Ben Chatelain on 12/27/18.
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
//
|
|
|
|
/// Protocol describing the members of CKSoftwareProduct used throughout MasKit.
|
|
public protocol SoftwareProduct {
|
|
var appName: String { get }
|
|
var bundlePath: String { get set }
|
|
var itemIdentifier: NSNumber { get set }
|
|
}
|