1
0
mirror of https://github.com/bitwarden/server synced 2025-12-19 17:53:44 +00:00
Files
server/src/Api/Models/Request/ExpandedTaxInfoUpdateRequestModel.cs
2025-07-08 10:25:59 -04:00

16 lines
439 B
C#

// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
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; }
}