mirror of
https://github.com/bitwarden/server.git
synced 2025-05-05 03:32:21 -05:00
11 lines
276 B
C#
11 lines
276 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; }
|
|
}
|