mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-13 02:58:59 -06:00
10 lines
234 B
Swift
10 lines
234 B
Swift
/// API model for cipher permissions.
|
|
///
|
|
struct CipherPermissionsModel: Codable, Equatable {
|
|
/// Whether `delete` permission is active.
|
|
let delete: Bool
|
|
|
|
/// Whether `restore` permission is acive.
|
|
let restore: Bool
|
|
}
|