mirror of
https://github.com/bitwarden/server.git
synced 2025-04-15 10:08:14 -05:00

* Implemented tax collection for subscriptions * Cleanup for Sales Tax * Cleanup for Sales Tax * Changes a constraint to an index for checking purposes * Added and implemented a ReadById method for TaxRate * Code review fixes for Tax Rate implementation * Code review fixes for Tax Rate implementation * Made the SalesTax migration script rerunnable
12 lines
308 B
C#
12 lines
308 B
C#
namespace Bit.Admin.Models
|
|
{
|
|
public class TaxRateAddEditModel
|
|
{
|
|
public string StripeTaxRateId { get; set; }
|
|
public string Country { get; set; }
|
|
public string State { get; set; }
|
|
public string PostalCode { get; set; }
|
|
public decimal Rate { get; set; }
|
|
}
|
|
}
|