1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

switched to initialization block

This commit is contained in:
jrmccannon 2025-03-05 08:21:30 -06:00
parent 4ff27fd668
commit 085dbffed1
No known key found for this signature in database
GPG Key ID: CF03F3DB01CE96A6

View File

@ -4,28 +4,29 @@ using Bit.Core.Utilities;
namespace Bit.Core.AdminConsole.Models.Business;
public record OrganizationDto(
Guid OrganizationId,
bool UseCustomPermissions,
int? Seats,
int? MaxAutoScaleSeats,
int? SmSeats,
int? SmMaxAutoScaleSeats,
Plan Plan,
string GatewayCustomerId,
string GatewaySubscriptionId,
bool UseSecretsManager
)
public record OrganizationDto
{
public Guid OrganizationId { get; init; }
public int? Seats { get; init; }
public int? MaxAutoScaleSeats { get; init; }
public int? SmSeats { get; init; }
public int? SmMaxAutoScaleSeats { get; init; }
public Plan Plan { get; init; }
public string GatewayCustomerId { get; init; }
public string GatewaySubscriptionId { get; init; }
public bool UseSecretsManager { get; init; }
public static OrganizationDto FromOrganization(Organization organization) =>
new(organization.Id,
organization.UseCustomPermissions,
organization.Seats,
organization.MaxAutoscaleSeats,
organization.SmSeats,
organization.MaxAutoscaleSmSeats,
StaticStore.GetPlan(organization.PlanType),
organization.GatewayCustomerId,
organization.GatewaySubscriptionId,
organization.UseSecretsManager);
};
new()
{
OrganizationId = organization.Id,
Seats = organization.Seats,
MaxAutoScaleSeats = organization.MaxAutoscaleSeats,
SmSeats = organization.SmSeats,
SmMaxAutoScaleSeats = organization.MaxAutoscaleSmSeats,
Plan = StaticStore.GetPlan(organization.PlanType),
GatewayCustomerId = organization.GatewayCustomerId,
GatewaySubscriptionId = organization.GatewaySubscriptionId,
UseSecretsManager = organization.UseSecretsManager
};
}