mirror of
https://github.com/bitwarden/mobile.git
synced 2024-12-25 16:47:55 +01:00
bugfix for incorrect type and nullable for some org vars (#1465)
This commit is contained in:
parent
96454b7cbf
commit
a4db088eda
@ -43,8 +43,8 @@ namespace Bit.Core.Models.Data
|
|||||||
public bool UsePolicies { get; set; }
|
public bool UsePolicies { get; set; }
|
||||||
public bool SelfHost { get; set; }
|
public bool SelfHost { get; set; }
|
||||||
public bool UsersGetPremium { get; set; }
|
public bool UsersGetPremium { get; set; }
|
||||||
public int Seats { get; set; }
|
public int? Seats { get; set; }
|
||||||
public int MaxCollections { get; set; }
|
public short? MaxCollections { get; set; }
|
||||||
public short? MaxStorageGb { get; set; }
|
public short? MaxStorageGb { get; set; }
|
||||||
public Permissions Permissions { get; set; } = new Permissions();
|
public Permissions Permissions { get; set; } = new Permissions();
|
||||||
}
|
}
|
||||||
|
@ -43,8 +43,8 @@ namespace Bit.Core.Models.Domain
|
|||||||
public bool UsePolicies { get; set; }
|
public bool UsePolicies { get; set; }
|
||||||
public bool SelfHost { get; set; }
|
public bool SelfHost { get; set; }
|
||||||
public bool UsersGetPremium { get; set; }
|
public bool UsersGetPremium { get; set; }
|
||||||
public int Seats { get; set; }
|
public int? Seats { get; set; }
|
||||||
public int MaxCollections { get; set; }
|
public short? MaxCollections { get; set; }
|
||||||
public short? MaxStorageGb { get; set; }
|
public short? MaxStorageGb { get; set; }
|
||||||
public Permissions Permissions { get; set; } = new Permissions();
|
public Permissions Permissions { get; set; } = new Permissions();
|
||||||
|
|
||||||
|
@ -16,8 +16,8 @@ namespace Bit.Core.Models.Response
|
|||||||
public bool UsePolicies { get; set; }
|
public bool UsePolicies { get; set; }
|
||||||
public bool UsersGetPremium { get; set; }
|
public bool UsersGetPremium { get; set; }
|
||||||
public bool SelfHost { get; set; }
|
public bool SelfHost { get; set; }
|
||||||
public int Seats { get; set; }
|
public int? Seats { get; set; }
|
||||||
public int MaxCollections { get; set; }
|
public short? MaxCollections { get; set; }
|
||||||
public short? MaxStorageGb { get; set; }
|
public short? MaxStorageGb { get; set; }
|
||||||
public string Key { get; set; }
|
public string Key { get; set; }
|
||||||
public OrganizationUserStatusType Status { get; set; }
|
public OrganizationUserStatusType Status { get; set; }
|
||||||
|
Loading…
Reference in New Issue
Block a user