19 lines
390 B
Swift
19 lines
390 B
Swift
// Copyright © 2021 Saleem Abdulrasool <compnerd@compnerd.org>
|
|
// SPDX-License-Identifier: BSD-3
|
|
|
|
import CWinRT
|
|
|
|
extension TrustLevel {
|
|
public static var BaseTrust: TrustLevel {
|
|
TrustLevel(rawValue: 0)
|
|
}
|
|
|
|
public static var PartialTrust: TrustLevel {
|
|
TrustLevel(rawValue: 1)
|
|
}
|
|
|
|
public static var FullTrust: TrustLevel {
|
|
TrustLevel(rawValue: 2)
|
|
}
|
|
}
|