mirror of
https://github.com/bitwarden/server.git
synced 2025-07-06 10:32:49 -05:00
premium access addon for families plans
This commit is contained in:
@ -26,6 +26,7 @@ namespace Bit.Core.Models.Api
|
||||
public short AdditionalSeats { get; set; }
|
||||
[Range(0, 99)]
|
||||
public short? AdditionalStorageGb { get; set; }
|
||||
public bool PremiumAccessAddon { get; set; }
|
||||
[EncryptedString]
|
||||
[EncryptedStringLength(1000)]
|
||||
public string CollectionName { get; set; }
|
||||
@ -42,6 +43,7 @@ namespace Bit.Core.Models.Api
|
||||
PaymentToken = PaymentToken,
|
||||
AdditionalSeats = AdditionalSeats,
|
||||
AdditionalStorageGb = AdditionalStorageGb.GetValueOrDefault(0),
|
||||
PremiumAccessAddon = PremiumAccessAddon,
|
||||
BillingEmail = BillingEmail,
|
||||
BusinessName = BusinessName,
|
||||
BusinessCountry = Country,
|
||||
|
Reference in New Issue
Block a user