1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 07:43:37 +00:00

null checked all the permissions (#1227)

This commit is contained in:
Addison Beck
2021-01-19 17:45:12 -05:00
committed by GitHub
parent 6e9238329c
commit c4823f1c37
3 changed files with 5 additions and 5 deletions

View File

@@ -23,6 +23,6 @@ namespace Bit.Core.Models.Response
public OrganizationUserStatusType Status { get; set; }
public OrganizationUserType Type { get; set; }
public bool Enabled { get; set; }
public Permissions Permissions { get; set; }
public Permissions Permissions { get; set; } = new Permissions();
}
}