1
0
mirror of https://github.com/bitwarden/server synced 2026-01-10 20:44:05 +00:00
Files
server/src/Core/Billing/Models/AddableOrganization.cs
Alex Morask f1b9bd9a09 [PM-15179] Implement endpoints to add existing organization to CB provider (#5310)
* Implement endpoints to add existing organization to provider

* Run dotnet format

* Support MOE

* Run dotnet format

* Move ProviderClientsController under AC ownership

* Move ProviderClientsControllerTests under AC ownership

* Jared's feedback
2025-02-04 09:02:18 -05:00

9 lines
164 B
C#

namespace Bit.Core.Billing.Models;
public record AddableOrganization(
Guid Id,
string Name,
string Plan,
int Seats,
bool Disabled = false);