1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 16:12:49 -05:00
Files
bitwarden/src/Api/Models/Request/Organizations/OrganizationTaxInfoUpdateRequestModel.cs
2021-12-14 16:05:07 +01:00

14 lines
398 B
C#

using Bit.Api.Models.Request.Accounts;
namespace Bit.Api.Models.Request.Organizations
{
public class OrganizationTaxInfoUpdateRequestModel : 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; }
}
}