mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00

* Remove gRPC and convert PricingClient to HttpClient wrapper * Add PlanType.GetProductTier extension Many instances of StaticStore use are just to get the ProductTierType of a PlanType, but this can be derived from the PlanType itself without having to fetch the entire plan. * Remove invocations of the StaticStore in non-Test code * Deprecate StaticStore entry points * Run dotnet format * Matt's feedback * Run dotnet format * Rui's feedback * Run dotnet format * Replacements since approval * Run dotnet format
27 lines
605 B
C#
27 lines
605 B
C#
namespace Bit.Core.Billing.Models;
|
|
|
|
public record OrganizationMetadata(
|
|
bool IsEligibleForSelfHost,
|
|
bool IsManaged,
|
|
bool IsOnSecretsManagerStandalone,
|
|
bool IsSubscriptionUnpaid,
|
|
bool HasSubscription,
|
|
bool HasOpenInvoice,
|
|
bool IsSubscriptionCanceled,
|
|
DateTime? InvoiceDueDate,
|
|
DateTime? InvoiceCreatedDate,
|
|
DateTime? SubPeriodEndDate)
|
|
{
|
|
public static OrganizationMetadata Default => new OrganizationMetadata(
|
|
false,
|
|
false,
|
|
false,
|
|
false,
|
|
false,
|
|
false,
|
|
false,
|
|
null,
|
|
null,
|
|
null);
|
|
}
|