mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
20 lines
357 B
Swift
20 lines
357 B
Swift
//
|
|
// StoreApp+Trusted.swift
|
|
// SideStore
|
|
//
|
|
// Created by Fabian Thies on 04.02.23.
|
|
// Copyright © 2023 SideStore. All rights reserved.
|
|
//
|
|
|
|
import AltStoreCore
|
|
|
|
extension StoreApp {
|
|
var isFromOfficialSource: Bool {
|
|
self.source?.isOfficial ?? false
|
|
}
|
|
|
|
var isFromTrustedSource: Bool {
|
|
self.source?.isTrusted ?? false
|
|
}
|
|
}
|