mirror of
https://github.com/confirmedcode/Lockdown-iOS.git
synced 2025-12-21 12:14:02 +01:00
21 lines
342 B
Swift
21 lines
342 B
Swift
//
|
|
// AccessLevel.swift
|
|
// Lockdown
|
|
//
|
|
// Created by Aliaksandr Dvoineu on 4.05.23.
|
|
// Copyright © 2023 Confirmed Inc. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum AccessLevel: Int, CaseIterable {
|
|
case basic
|
|
case advanced
|
|
case anonymous
|
|
case universal
|
|
|
|
func hasFeature() -> Bool {
|
|
return true
|
|
}
|
|
}
|