1
0
mirror of https://github.com/bitwarden/server synced 2025-12-06 00:03:34 +00:00
Files
server/src/Core/Billing/Pricing/Models/Feature.cs
Alex Morask d914ab8a98 [PM-23687] Support free organizations on Payment Details page (#6084)
* Resolve JSON serialization bug in OneOf converters and organize pricing models

* Support free organizations for payment method and billing address flows

* Run dotnet format
2025-07-14 12:39:49 -05:00

8 lines
169 B
C#

namespace Bit.Core.Billing.Pricing.Models;
public class Feature
{
public required string Name { get; set; }
public required string LookupKey { get; set; }
}