Adds basic AppsViewController implementation

This commit is contained in:
Riley Testut
2019-05-09 15:29:54 -07:00
parent e5957e61a2
commit f4a3a09cba
20 changed files with 453 additions and 68 deletions

17
AltStore/Model/App.swift Normal file
View File

@@ -0,0 +1,17 @@
//
// App.swift
// AltStore
//
// Created by Riley Testut on 5/9/19.
// Copyright © 2019 Riley Testut. All rights reserved.
//
import Foundation
class App: NSObject, Codable
{
var name: String
var subtitle: String
var iconName: String
}