mirror of
https://github.com/confirmedcode/Lockdown-iOS.git
synced 2025-12-25 12:13:52 +01:00
16 lines
357 B
Swift
16 lines
357 B
Swift
//
|
|
// LockdownUser.swift
|
|
// Lockdown
|
|
//
|
|
// Created by Aliaksandr Dvoineu on 4.05.23.
|
|
// Copyright © 2023 Confirmed Inc. All rights reserved.
|
|
//
|
|
|
|
final class LockdownUser {
|
|
private(set) var currentSubscription: Subscription?
|
|
|
|
func updateSubscription(to newSubscription: Subscription?) {
|
|
currentSubscription = newSubscription
|
|
}
|
|
}
|