Files
SideStore/AltStoreCore/Patreon/Campaign.swift
Jackson Coxson 46834ab5ce Revert "Change AltStore naming to SideStore"
This reverts commit 646000920f.
2022-05-30 22:54:21 -06:00

28 lines
426 B
Swift

//
// Campaign.swift
// AltStore
//
// Created by Riley Testut on 8/21/19.
// Copyright © 2019 Riley Testut. All rights reserved.
//
import Foundation
extension PatreonAPI
{
struct CampaignResponse: Decodable
{
var id: String
}
}
public struct Campaign
{
public var identifier: String
init(response: PatreonAPI.CampaignResponse)
{
self.identifier = response.id
}
}