mirror of
https://github.com/bitwarden/server
synced 2025-12-23 03:33:35 +00:00
Billing updates
- Break monthly and annual plans into two. - Add upgrade and adjust additional users
This commit is contained in:
13
src/Core/Models/Business/OrganizationChangePlan.cs
Normal file
13
src/Core/Models/Business/OrganizationChangePlan.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using Bit.Core.Enums;
|
||||
using System;
|
||||
|
||||
namespace Bit.Core.Models.Business
|
||||
{
|
||||
public class OrganizationChangePlan
|
||||
{
|
||||
public Guid OrganizationId { get; set; }
|
||||
public PlanType PlanType { get; set; }
|
||||
public short AdditionalUsers { get; set; }
|
||||
public bool Monthly { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user