mirror of
https://github.com/bitwarden/server
synced 2026-01-10 20:44:05 +00:00
* 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
9 lines
164 B
C#
9 lines
164 B
C#
namespace Bit.Core.Billing.Models;
|
|
|
|
public record AddableOrganization(
|
|
Guid Id,
|
|
string Name,
|
|
string Plan,
|
|
int Seats,
|
|
bool Disabled = false);
|