mirror of
https://github.com/bitwarden/server
synced 2025-12-06 00:03:34 +00:00
* Resolve JSON serialization bug in OneOf converters and organize pricing models * Support free organizations for payment method and billing address flows * Run dotnet format
8 lines
169 B
C#
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; }
|
|
}
|