mirror of
https://github.com/mas-cli/mas
synced 2024-12-28 04:43:08 +00:00
15 lines
374 B
Swift
15 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 }
|
||
|
}
|