mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 14:13:18 +08:00
13 lines
250 B
C#
13 lines
250 B
C#
using Bit.Core.Models.StaticStore;
|
|
|
|
namespace Bit.Core.Billing.Models;
|
|
|
|
public record ConfiguredProviderPlan(
|
|
Guid Id,
|
|
Guid ProviderId,
|
|
Plan Plan,
|
|
decimal Price,
|
|
int SeatMinimum,
|
|
int PurchasedSeats,
|
|
int AssignedSeats);
|