1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-07 22:18:17 -05:00
bitwarden/src/Api/Models/Request/ExpandedTaxInfoUpdateRequestModel.cs

13 lines
346 B
C#

using Bit.Api.Models.Request.Accounts;
namespace Bit.Api.Models.Request;
public class ExpandedTaxInfoUpdateRequestModel : TaxInfoUpdateRequestModel
{
public string TaxId { get; set; }
public string Line1 { get; set; }
public string Line2 { get; set; }
public string City { get; set; }
public string State { get; set; }
}