mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-08 22:33:26 +01:00
18 lines
261 B
Swift
18 lines
261 B
Swift
//
|
|
// 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
|
|
}
|