diff --git a/src/Core/Models/Data/OrganizationData.cs b/src/Core/Models/Data/OrganizationData.cs index 926bb71ff..7fe8f94be 100644 --- a/src/Core/Models/Data/OrganizationData.cs +++ b/src/Core/Models/Data/OrganizationData.cs @@ -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(); } diff --git a/src/Core/Models/Domain/Organization.cs b/src/Core/Models/Domain/Organization.cs index 77676b1d5..7e2046212 100644 --- a/src/Core/Models/Domain/Organization.cs +++ b/src/Core/Models/Domain/Organization.cs @@ -43,8 +43,8 @@ namespace Bit.Core.Models.Domain 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(); diff --git a/src/Core/Models/Response/ProfileOrganizationResponse.cs b/src/Core/Models/Response/ProfileOrganizationResponse.cs index 0036c337a..504a75db8 100644 --- a/src/Core/Models/Response/ProfileOrganizationResponse.cs +++ b/src/Core/Models/Response/ProfileOrganizationResponse.cs @@ -16,8 +16,8 @@ namespace Bit.Core.Models.Response public bool UsePolicies { get; set; } public bool UsersGetPremium { get; set; } public bool SelfHost { 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 string Key { get; set; } public OrganizationUserStatusType Status { get; set; }