mirror of
https://github.com/mas-cli/mas
synced 2024-11-23 12:03:12 +00:00
11 lines
208 B
Swift
11 lines
208 B
Swift
//
|
|
// StoreAccount.swift
|
|
// mas-cli
|
|
//
|
|
// Created by Ben Chatelain on 4/3/18.
|
|
// Copyright © 2018 Andrew Naylor. All rights reserved.
|
|
//
|
|
|
|
protocol StoreAccount {
|
|
var identifier: String { get set }
|
|
}
|