mirror of
https://github.com/bitwarden/mobile
synced 2025-12-10 05:13:31 +00:00
bugfix for incorrect type and nullable for some org vars (#1465)
This commit is contained in:
@@ -43,8 +43,8 @@ namespace Bit.Core.Models.Data
|
||||
public bool UsePolicies { get; set; }
|
||||
public bool SelfHost { get; set; }
|
||||
public bool UsersGetPremium { get; set; }
|
||||
public int Seats { get; set; }
|
||||
public int MaxCollections { get; set; }
|
||||
public int? Seats { get; set; }
|
||||
public short? MaxCollections { get; set; }
|
||||
public short? MaxStorageGb { get; set; }
|
||||
public Permissions Permissions { get; set; } = new Permissions();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user