mirror of
https://github.com/confirmedcode/Lockdown-iOS.git
synced 2025-12-21 12:14:02 +01:00
16 lines
357 B
Swift
16 lines
357 B
Swift
//
|
|
// LockdownUser.swift
|
|
// Lockdown
|
|
//
|
|
// Created by Alexander Parshakov on 12/2/22
|
|
// Copyright © 2022 Confirmed Inc. All rights reserved.
|
|
//
|
|
|
|
final class LockdownUser {
|
|
private(set) var currentSubscription: Subscription?
|
|
|
|
func updateSubscription(to newSubscription: Subscription?) {
|
|
currentSubscription = newSubscription
|
|
}
|
|
}
|